Skip to content

refactor: remove typing.final from exceptions #21

refactor: remove typing.final from exceptions

refactor: remove typing.final from exceptions #21

Workflow file for this run

name: CI
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10.0", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python
run: uv python install ${{ matrix.python-version }}
- name: Sync dependencies
run: uv sync --all-extras --all-groups --python ${{ matrix.python-version }}
- name: Ruff (lint)
run: uv run ruff check .
- name: Ruff (format)
run: uv run ruff format --check .
- name: Pytest
run: uv run pytest -q
- name: Mypy
run: uv run mypy src --pretty