-
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (41 loc) · 1.03 KB
/
run-python-tests-lin.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
name: "CPython tests (Linux)"
run-name: "Run CPython tests on Linux"
on: [push, pull_request]
jobs:
test:
name: "Test"
strategy:
fail-fast: false
# max-parallel: 6
matrix:
os:
- ubuntu-20.04
python_version:
# See issue #9 for more information
# - "2.7.17"
# - "2.7.18"
- "3.5.4"
- "3.5.10"
- "3.6.7"
- "3.6.15"
- "3.7.1"
- "3.7.16"
- "3.8.0"
- "3.8.16"
- "3.9.0"
- "3.10.0"
- "3.10.11"
- "3.11.0"
- "3.11.3"
runs-on: ${{ matrix.os }}
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: "Set up Python ${{ matrix.python_version }}"
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
check-latest: false
- name: "Run tests"
run: |
python ./scripts/run_tests.py --verbose --pattern "*.py"