black #109
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test and lint | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: ["3.8", "3.11"] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup prerequisites | |
run: | |
sudo apt update && sudo apt install -y libhdf5-serial-dev netcdf-bin | |
libnetcdf-dev libsm6 libxext6 libxrender-dev libxt6 libgl1-mesa-glx | |
libfontconfig libxkbcommon-x11-0 | |
- name: Install dependencies | |
run: | | |
pip install .[tests] | |
- name: Test local run | |
run: | | |
pytest | |
lint-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: chartboost/ruff-action@v1 |