-
Notifications
You must be signed in to change notification settings - Fork 3
95 lines (73 loc) · 2.47 KB
/
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
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
85
86
87
88
89
90
91
92
93
94
95
name: Tests
on:
push:
pull_request:
release:
schedule:
# Every Thursday at 1 AM
- cron: '0 1 * * 4'
jobs:
Tests:
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
container: ${{ matrix.container }}
name: ${{ startsWith(matrix.toxenv, 'py') && matrix.python-version || format('{0} ({1})', matrix.toxenv, matrix.python-version) }} ${{ matrix.optional && '[OPTIONAL]' }}
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
include:
- python-version: '3.12'
toxenv: lint
- python-version: '3.12'
toxenv: docs
- python-version: '3.12'
toxenv: coverage
- python-version: '3.13-dev'
optional: true
toxenv: py313
toxpython: '3.13'
- python-version: '3.6'
toxenv: py36
os: ubuntu-20.04
- python-version: '3.5'
toxenv: py35
os: ubuntu-20.04
- python-version: '2.7'
container: {image: 'python:2.7.18-buster'}
toxenv: py27
- python-version: '2.7'
container: {image: 'python:2.7.18-buster'}
toxenv: el7
- python-version: pypy-2.7
toxenv: pypy27
- python-version: pypy-3.10
toxenv: pypy310
env:
TOXENV: ${{ matrix.toxenv || format('py{0}', matrix.python-version) }}
TOXPYTHON: python${{ matrix.toxpython || matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
if: ${{ matrix.python-version != '2.7' && matrix.python-version != '3.5' }}
# Workaround for https://github.com/actions/setup-python/issues/866
- name: Set up Python 3.5 (Workaround)
uses: actions/setup-python@v5
with:
python-version: 3.5
env:
PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org"
if: ${{ matrix.python-version == '3.5' }}
- name: Install tox
run: pip install tox
- name: Run tox
run: tox -- --verbose
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
verbose: true
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
if: ${{ matrix.toxenv == 'coverage' }}