Add Makefile (#4)
Markus Wüstenberg markus@maragu.dk
Fri, 18 Sep 2020 13:57:04 +0200
2 files changed, 12 insertions(+), 0 deletions(-)
jump to
A Makefile
@@ -0,0 +1,11 @@+.PHONY: cover lint test + +cover: + go tool cover -html=cover.out + +lint: + golangci-lint run + +test: + go test -coverprofile=cover.out -mod=readonly ./... +