13 lines
204 B
Makefile
13 lines
204 B
Makefile
|
|
.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
|