Skip to content

Set NO_CYTHON_COMPILE to fix Windows builds (and speed others up) #40

Set NO_CYTHON_COMPILE to fix Windows builds (and speed others up)

Set NO_CYTHON_COMPILE to fix Windows builds (and speed others up) #40

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python-version: ["3.15-dev", "3.15t-dev"]
os: [ubuntu-latest, macos-latest]
experimental: [false]
include:
- python-version: "3.15-dev"
os: windows-latest
experimental: true
- python-version: "3.15t-dev"
os: windows-latest
experimental: true
fail-fast: false
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Test using tox
run: tox -e py