.PHONY: check test build
check: test
	git diff --check
	uv run python -m compileall -q src
	uv run coordination-engine --help
	uv run coordination-engine --version

test:
	uv run pytest

build:
	uv build
