Run CPython tests on MacOS #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |