-
Notifications
You must be signed in to change notification settings - Fork 15
40 lines (37 loc) · 1.08 KB
/
unit-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: Unit test run
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up OnAIR test environment
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: onair
environment-file: environment_dev.yml
channels: conda-forge, nodefaults
python-version: ${{ matrix.python-version }}
auto-activate-base: false
miniforge-version: latest
run: conda config --show channels
- name: Install dependencies
shell: bash -l {0}
run: |
conda info
conda list
- name: Test with pytest
shell: bash -l {0}
run: python -m coverage run --branch --source=onair,plugins -m pytest ./test/
- name: Coverage report
shell: bash -l {0}
run: coverage report --skip-empty
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
- name: Confirm no defaults
run: conda config --show channels