-
-
Notifications
You must be signed in to change notification settings - Fork 4
46 lines (38 loc) · 934 Bytes
/
tests.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
name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [3.7, 3.8, 3.9]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up target Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Set up Python
uses: actions/setup-python@v2
- name: Install nox
run: |
pip install nox
nox --version
- name: Run tests
run: dbus-run-session -- nox -s test-${{ matrix.python }}
- name: Send coverage report
uses: codecov/codecov-action@v2
env:
PYTHON: ${{ matrix.python }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: PYTHON
files: .nox/*/coverage-*.xml