Skip to content

docs: note Python 3.14 support under [Unreleased] #18

docs: note Python 3.14 support under [Unreleased]

docs: note Python 3.14 support under [Unreleased] #18

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6.0.2
- name: Install uv
uses: astral-sh/setup-uv@v8.0.0
- name: Install Python ${{ matrix.python-version }} and dependencies
run: uv sync --python ${{ matrix.python-version }} --extra test
- name: Run tests
run: uv run pytest