Skip to content

Add support for Python 3.14 and also test 3.11-3.14 #19

Add support for Python 3.14 and also test 3.11-3.14

Add support for Python 3.14 and also test 3.11-3.14 #19

Workflow file for this run

---
name: Test Suite
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
FORCE_COLOR: 1
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: "actions/checkout@v6"
- uses: "actions/setup-python@v6"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: "scripts/install"
- name: "Run tests"
run: "scripts/test"
# - name: "Run linting checks"
# run: "scripts/check"
# - name: "Build package & docs"
# run: "scripts/build"
# - name: "Run tests"
# run: "scripts/test"
# - name: "Enforce coverage"
# run: "scripts/coverage"