12 lines
261 B
Makefile
12 lines
261 B
Makefile
|
|
.PHONY: test check sync
|
||
|
|
|
||
|
|
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
|