豆豆友情提示:这是一个非官方 GitHub 代理镜像,主要用于网络测试或访问加速。请勿在此进行登录、注册或处理任何敏感信息。进行这些操作请务必访问官方网站 github.com。 Raw 内容也通过此代理提供。
Skip to content

Run CPython tests on MacOS #34

Run CPython tests on MacOS

Run CPython tests on MacOS #34

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"