From d51de8f3bca8e044954f2ba060ae184e1ddb6f80 Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Wed, 21 Sep 2022 20:31:01 +0000 Subject: [PATCH] makefile help command --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 47657ba..a151236 100644 --- a/Makefile +++ b/Makefile @@ -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