Skip to content

Commit

Permalink
run free-threaded CI on MacOS and Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoldbaum committed Nov 5, 2024
1 parent 1befe1d commit a9bb7cb
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,11 @@ jobs:

test-free-threaded:
needs: [fmt]
runs-on: ubuntu-latest
name: Free threaded tests - ${{ matrix.runner }}
runs-on: ${{ matrix.runner }}
strategy:
matrix:
runner: ["ubuntu-latest", "windows-latest", "macos-latest"]
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
Expand All @@ -561,11 +565,10 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
components: rust-src
# TODO: replace with setup-python when there is support
- uses: deadsnakes/[email protected]
# TODO: replace with actions/setup-python when there is support
- uses: quansight-labs/[email protected]
with:
python-version: '3.13-dev'
nogil: true
python-version: '3.13t'
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- run: python3 -m sysconfig
Expand Down

0 comments on commit a9bb7cb

Please sign in to comment.