Assistant: codex Assistant-Model: gpt-6-astra Assistant-Session: 01a07b5b-ea58-7ad2-bdbb-0b1c995cfc35
12 lines
204 B
Makefile
12 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
|