Skip to content

fix: 3.10 treated as 3.1 #2

fix: 3.10 treated as 3.1

fix: 3.10 treated as 3.1 #2

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Check out code
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: pip install uv
- name: Sync dependencies
run: uv sync --group dev
- name: Run ruff and pyright
run: uv run ruff format . && uv run ruff check --fix . && uv run pyright
- name: Run tests
run: uv run python3 -m unittest tests