Skip to content

bump mypy to v1.16.0 and ruff to v0.11.13 #642

bump mypy to v1.16.0 and ruff to v0.11.13

bump mypy to v1.16.0 and ruff to v0.11.13 #642

Workflow file for this run

name: check
on:
push:
branches: [ master ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: prepare
uses: actions/setup-python@v5
with:
python-version: ">=3.13"
- name: install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: install project dependencies
run: uv sync --all-extras --dev
- name: test
run: PYTHONPATH=. uv run pytest
- name: lint
run: uv run pre-commit run --all-files