Assistant: codex Assistant-Model: gpt-6-astra Assistant-Session: 01a07ff8-19d0-7820-b4d0-1353833cb7fc
19 lines
410 B
Makefile
19 lines
410 B
Makefile
.PHONY: test check sync package image-build
|
|
|
|
IMAGE ?= informed-decision:local
|
|
|
|
package:
|
|
uv build --wheel
|
|
|
|
image-build: package
|
|
docker build -f Containerfile -t $(IMAGE) .
|
|
|
|
test:
|
|
python3 -m pytest -q
|
|
|
|
# Everything the repo can verify about itself, without network.
|
|
check: test
|
|
@python3 -m json.tool schemas/decision-memo.schema.json > /dev/null && echo "schema: valid JSON"
|
|
|
|
sync:
|
|
statehub fix-consistency
|