-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (38 loc) · 955 Bytes
/
run-python-tests-mac.yml
File metadata and controls
43 lines (38 loc) · 955 Bytes
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
name: "CPython tests (MacOS)"
run-name: "Run CPython tests on MacOS"
on: [push, pull_request]
jobs:
test:
name: "Test"
strategy:
fail-fast: false
# max-parallel: 6
matrix:
os:
- macos-latest
python_version:
- "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"