Git hooks
Local git hooks are optional but recommended.
Enable hooks
# from repo root
git config core.hooksPath .githooks
Pre-push
Runs scripts/check.sh (ruff, mypy, pytest) before pushing.
Local git hooks are optional but recommended.
# from repo root
git config core.hooksPath .githooks
Runs scripts/check.sh (ruff, mypy, pytest) before pushing.