-
Notifications
You must be signed in to change notification settings - Fork 25
167 lines (167 loc) · 5.39 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
name: Test
on: [push, pull_request, workflow_dispatch]
jobs:
test:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
include:
- name: 'py38 (Ubuntu)'
python: '3.8'
toxpython: 'python3.8'
python_arch: 'x64'
tox_env: 'py38-with_coverage'
os: 'ubuntu-latest'
- name: 'py38 (Windows)'
python: '3.8'
toxpython: 'python3.8'
python_arch: 'x64'
tox_env: 'py38-with_coverage'
os: 'windows-latest'
- name: 'py38 (macOS)'
python: '3.8'
toxpython: 'python3.8'
python_arch: 'arm64'
tox_env: 'py38-with_coverage'
os: 'macos-latest'
- name: 'py39 (Ubuntu)'
python: '3.9'
toxpython: 'python3.9'
python_arch: 'x64'
tox_env: 'py39-with_coverage'
os: 'ubuntu-latest'
- name: 'py39 (Windows)'
python: '3.9'
toxpython: 'python3.9'
python_arch: 'x64'
tox_env: 'py39-with_coverage'
os: 'windows-latest'
- name: 'py39 (macOS)'
python: '3.9'
toxpython: 'python3.9'
python_arch: 'arm64'
tox_env: 'py39-with_coverage'
os: 'macos-latest'
- name: 'py310 (Ubuntu)'
python: '3.10'
toxpython: 'python3.10'
python_arch: 'x64'
tox_env: 'py310-with_coverage'
os: 'ubuntu-latest'
- name: 'py310 (Windows)'
python: '3.10'
toxpython: 'python3.10'
python_arch: 'x64'
tox_env: 'py310-with_coverage'
os: 'windows-latest'
- name: 'py310 (macOS)'
python: '3.10'
toxpython: 'python3.10'
python_arch: 'arm64'
tox_env: 'py310-with_coverage'
os: 'macos-latest'
- name: 'py311 (Ubuntu)'
python: '3.11'
toxpython: 'python3.11'
python_arch: 'x64'
tox_env: 'py311-with_coverage'
os: 'ubuntu-latest'
- name: 'py311 (Windows)'
python: '3.11'
toxpython: 'python3.11'
python_arch: 'x64'
tox_env: 'py311-with_coverage'
os: 'windows-latest'
- name: 'py311 (macOS)'
python: '3.11'
toxpython: 'python3.11'
python_arch: 'arm64'
tox_env: 'py311-with_coverage'
os: 'macos-latest'
- name: 'py312 (Ubuntu)'
python: '3.12'
toxpython: 'python3.12'
python_arch: 'x64'
tox_env: 'py312-with_coverage'
os: 'ubuntu-latest'
- name: 'py312 (Windows)'
python: '3.12'
toxpython: 'python3.12'
python_arch: 'x64'
tox_env: 'py312-with_coverage'
os: 'windows-latest'
- name: 'py312 (macOS)'
python: '3.12'
toxpython: 'python3.12'
python_arch: 'arm64'
tox_env: 'py312-with_coverage'
os: 'macos-latest'
- name: 'pypy39 (Ubuntu)'
python: 'pypy-3.9'
toxpython: 'pypy3.9'
python_arch: 'x64'
tox_env: 'pypy39-with_coverage'
os: 'ubuntu-latest'
- name: 'pypy39 (Windows)'
python: 'pypy-3.9'
toxpython: 'pypy3.9'
python_arch: 'x64'
tox_env: 'pypy39-with_coverage'
os: 'windows-latest'
- name: 'pypy39 (macOS)'
python: 'pypy-3.9'
toxpython: 'pypy3.9'
python_arch: 'arm64'
tox_env: 'pypy39-with_coverage'
os: 'macos-latest'
- name: 'pypy310 (Ubuntu)'
python: 'pypy-3.10'
toxpython: 'pypy3.10'
python_arch: 'x64'
tox_env: 'pypy310-with_coverage'
os: 'ubuntu-latest'
- name: 'pypy310 (Windows)'
python: 'pypy-3.10'
toxpython: 'pypy3.10'
python_arch: 'x64'
tox_env: 'pypy310-with_coverage'
os: 'windows-latest'
- name: 'pypy310 (macOS)'
python: 'pypy-3.10'
toxpython: 'pypy3.10'
python_arch: 'arm64'
tox_env: 'pypy310-with_coverage'
os: 'macos-latest'
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: ${{ matrix.python_arch }}
cache: 'pip'
cache-dependency-path: .github/workflows/test.yml
- name: Install tox dependencies
run: |
python -m pip install --upgrade pip
pip install --progress-bar=off 'tox ~= 4.9'
virtualenv --version
pip --version
tox --version
pip list --format=freeze
- name: Cache tox env
uses: actions/cache@v4
with:
path: .tox/${{ matrix.tox_env }}
key: ${{ matrix.python }}-${{ matrix.python_arch }}-${{ hashFiles('setup.py', 'tox.ini') }}
- name: Test
env:
TOXPYTHON: '${{ matrix.toxpython }}'
run: >
tox -e '${{ matrix.tox_env }}' -v