gh-187: Support environment variables PYTHON_GIL / PYTHON_CPU_COUNT #271
Workflow file for this run
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: Build | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
jobs: | ||
tox-jobs: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
tox-job: [doc, pep8] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: pip install tox | ||
- run: tox -e ${{ matrix.tox-job }} | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
name: ${{ matrix.os }} - ${{ matrix.python }} ${{ matrix.build }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
python: ['3.13-dev'] | ||
build: [''] | ||
include: | ||
- os: ubuntu-latest | ||
python: 'pypy3.10' | ||
build: '' | ||
- os: ubuntu-latest | ||
python: 'pypy3.9' | ||
build: '' | ||
- os: ubuntu-latest | ||
python: 'pypy3.8' | ||
build: '' | ||
- os: ubuntu-latest | ||
python: '3.8' | ||
build: '' | ||
- os: ubuntu-latest | ||
python: '3.9' | ||
build: '' | ||
- os: ubuntu-latest | ||
python: '3.10' | ||
build: '' | ||
- os: ubuntu-latest | ||
python: '3.11' | ||
build: '' | ||
- os: ubuntu-latest | ||
python: '3.12' | ||
build: '' | ||
- os: ubuntu-latest | ||
python: '3.13-dev' | ||
build: 'free-threading' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
- name: Set up Python ${{ matrix.python }} using deadsnakes | ||
uses: deadsnakes/action@v3.1.0 | ||
if: ${{ matrix.build != 'free-threading' }} | ||
with: | ||
python-version: ${{ matrix.python }} | ||
if: ${{ matrix.build == 'free-threading' }} | ||
Check failure on line 69 in .github/workflows/build.yml GitHub Actions / BuildInvalid workflow file
|
||
with: | ||
python-version: ${{ matrix.python }} | ||
nogil: 1 | ||
- name: Install Tox and any other packages | ||
run: pip install tox | ||
- name: Run Tox | ||
# Run tox using the version of Python in `PATH` | ||
run: tox -e py |