.PHONY: test check

test:
	uv run pytest

check:
	uv run pytest
	git diff --check
	python3 -m compileall -q src
