| # | |
| # Installation | |
| # | |
| setup: | |
| pip install -U uv | |
| install: | |
| uv sync | |
| # | |
| # linter/formatter/typecheck | |
| # | |
| lint: install | |
| uv run ruff check --output-format=github . | |
| format: install | |
| uv run ruff format --check --diff . | |
| typecheck: install | |
| uv run mypy --cache-dir=/dev/null . | |
| test: install | |
| uv run pytest -vsx --log-cli-level=INFO | |