diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9c48b5a --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +.PHONY: build test +# +build: + echo "start build" + go build . + echo "end build" +# +test: + + echo "start build" + go build . + go test -v ./... + echo "end build" +# \ No newline at end of file