-
Notifications
You must be signed in to change notification settings - Fork 3
84 lines (74 loc) · 2.1 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Test
on:
pull_request:
push:
branches:
- master
schedule:
- cron: '0 6 * * *'
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- windows-latest
- ubuntu-latest
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- 'pypy-3.10'
# Avoid PyPy 7.3.16, as the tests currently fail on it due to a bug
# in it and/or tox: <https://github.com/pypy/pypy/issues/4958>,
# <https://github.com/tox-dev/tox/issues/3284>
- 'pypy-3.9-v7.3.15'
- 'pypy-3.10-v7.3.15'
toxenv: [py]
exclude:
# Not available on arm64 macos-latest:
- python-version: '3.9'
os: macos-latest
include:
- python-version: '3.9'
toxenv: lint
os: ubuntu-latest
- python-version: '3.9'
toxenv: typing
os: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install --upgrade --upgrade-strategy=eager tox
- name: Run tests
if: matrix.toxenv == 'py'
run: ./run-tests.sh -e py -- -vv --ci --cov-report=xml
env:
GITHUB_TOKEN: ${{ secrets.GH_DOWNLOAD_TOKEN }}
- name: Run generic tests
if: matrix.toxenv != 'py'
run: tox -e ${{ matrix.toxenv }}
- name: Upload coverage to Codecov
if: matrix.toxenv == 'py'
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
name: ${{ matrix.python-version }}
# vim:set et sts=2: