lint:
    uv run ruff check --fix src/

build:
    uv build

test *args:
    uv run mypy src/
    uv run pytest {{args}}
