From bb7049ac2d4ceb00c127352033850d3b494c0086 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Wed, 20 Oct 2021 17:28:26 +0200 Subject: [PATCH] feat: add new makefile --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c53b1cd --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +build: + @go build . + +check: + @test -z $$(gofmt -l .) || (echo "gofmt: formatting issue - run 'make format' to resolve" && exit 1) + +test: + @go test . -cover