-
Notifications
You must be signed in to change notification settings - Fork 7
55 lines (52 loc) · 1.34 KB
/
pytest.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: pytest
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
pytest:
strategy:
matrix:
os:
- label: Linux
runner: ubuntu-latest
deps:
- label: Latest
spec: ""
- label: Minimum
spec: >-
dask=2022.05.1
h5py=3
isce3=0.12
numpy=1.21
python=3.8
rasterio=1.3
scipy=1.5
fail-fast: false
name: ${{ matrix.os.label }} • ${{matrix.deps.label }}
runs-on: ${{ matrix.os.runner }}
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup environment
uses: mamba-org/setup-micromamba@v1
with:
environment-file: requirements.txt
environment-name: tophu
create-args: ${{ matrix.deps.spec }}
condarc: |
channels:
- conda-forge
- nodefaults
- name: Install
run: |
pip install --no-deps .
- name: Test
run: |
micromamba install -f test/requirements.txt -c conda-forge
pytest --cov-report=xml
- name: Coverage report
uses: codecov/codecov-action@v3