mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-11-04 19:40:57 +00:00
Include no-GIL builds for testing
This commit is contained in:
parent
55f88dca4d
commit
9ec16d70b8
1 changed files with 7 additions and 1 deletions
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
|
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
|
||||||
py: ["3.13-dev", "3.12", "3.11", "3.10", "3.9", "3.8"]
|
py: ["3.14-dev", "3.13-dev", "3.12", "3.11", "3.10", "3.9", "3.8"]
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
|
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
|
||||||
|
|
@ -25,6 +25,12 @@ jobs:
|
||||||
python-version: ${{ matrix.py }}
|
python-version: ${{ matrix.py }}
|
||||||
allow-prereleases: true
|
allow-prereleases: true
|
||||||
cache: "pip"
|
cache: "pip"
|
||||||
|
- name: Set up no-GIL Python
|
||||||
|
uses: deadsnakes/action@v3.1.0
|
||||||
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.py, '3.14')
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.py }}
|
||||||
|
nogil: true
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue