makefile help command

master
michael 2022-09-21 20:31:01 +00:00
parent 1b40283f69
commit d51de8f3bc
1 changed files with 9 additions and 1 deletions

View File

@ -1,7 +1,15 @@
SHELL = /bin/bash
.DEFAULT_GOAL := serve
.DEFAULT_GOAL := test
.PHONY: test
help:
@echo '--------------'
@echo '* Help *'
@echo '--------------'
@echo
@echo "test: run all integration tests on served chain"
@echo "utest: run all inline Go unit tests"
test:
./tests/test_locking_funds.sh
./tests/test_auction_flow.sh