Skip to content

chore: Add mypy as a type checker for repository #59

chore: Add mypy as a type checker for repository

chore: Add mypy as a type checker for repository #59

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --dev
- name: Lint with ruff
run: |
uv run ruff check --select=E9,F63,F7,F82 .
uv run ruff check .
- name: Test with pytest
run: uv run pytest