Skip to content

Commit

Permalink
matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Nov 23, 2023
1 parent 26d9487 commit 6619fb0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13-dev"]
include:
- { python-version: "3.12-dev", disable-gil: false }
- { python-version: "3.12-dev", disable-gil: true }
- { python-version: "3.13-dev", disable-gil: false }
- { python-version: "3.13-dev", disable-gil: true }
name: main
steps:
- uses: actions/checkout@v4
Expand All @@ -23,5 +27,3 @@ jobs:
run: |
python --version --version && which python
python -c "import sysconfig; print(sysconfig.get_config_var('Py_GIL_DISABLED'))"
python -c "import sysconfig; print(sysconfig.get_config_var('Py_NOGIL'))"
ls /home/runner/venv-3.13/bin/

0 comments on commit 6619fb0

Please sign in to comment.