-
Notifications
You must be signed in to change notification settings - Fork 10
53 lines (44 loc) · 1.36 KB
/
ci.yaml
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
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
python-version: ["3.9"]
env:
PYTHON_VERSION: ${{ matrix.python-version }}
OS: ${{ matrix.os }}
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Setup Conda Environment
uses: mamba-org/setup-micromamba@v1
with:
# python-version: ${{ matrix.python-version }}
environment-file: continuous_integration/environment.yaml
cache-environment: true
init-shell: bash powershell
- name: Install Donfig
shell: bash -l {0}
run: |
pip install --no-deps -e .
- name: Run unit tests on non-Windows
shell: bash -l {0}
run: |
pytest --cov=donfig donfig --cov-report=xml
if: runner.os != 'Windows'
- name: Run unit tests on Windows
shell: powershell
run: |
pytest --cov=donfig donfig --cov-report=xml
if: runner.os == 'Windows'
- name: Upload unittest coverage to Codecov
uses: codecov/codecov-action@v4
with:
flags: unittests
file: ./coverage.xml
env_vars: OS,PYTHON_VERSION,UNSTABLE