coordination-engine/Makefile

13 lines
204 B
Makefile
Raw Normal View History

.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