Skip to content

Hopefully now fixed bug #58

Hopefully now fixed bug

Hopefully now fixed bug #58

Workflow file for this run

name: Lint
on:
push:
branches: [main]
jobs:
Lint:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Check lockfile
run: uv lock --check
- name: Lint with ruff
continue-on-error: true
run: |
# Fail if codebase contains any of these issues
uv run ruff check .
uv run ruff format --check .
- name: Static Typechecking with mypy
run: |
uv run mypy --config-file pyproject.toml src tests