#!/bin/sh
# Runs the same checks as CI before every push. Enable once per clone:
#   git config core.hooksPath .githooks
set -e
uv run ruff check .
uv run ruff format --check .
uv run mypy src
uv run pytest
