-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (32 loc) · 936 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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