1# setup project - sync dependencies and install pre-commit hooks 2setup: 3 uv sync 4 uv run pre-commit install 5 6# run tests 7test: 8 uv run pytest tests/ -v 9 10# run pre-commit checks 11check: 12 uv run pre-commit run --all-files