Skip to content

test: ci

test: ci #340

Workflow file for this run

name: CI
on: [push, workflow_dispatch]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install test dependencies
run: python -m pip install .[test]
- name: run tests
run: python run_tests.py
test-debug:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up debug Python
uses: deadsnakes/action@v3.2.0
with:
python-version: "3.13"
debug: true
- name: Install test dependencies
run: python -m pip install .[test]
- name: Run tests (debug build)
run: python run_tests.py