diff --git a/Makefile b/Makefile index a98a79e..f369e2a 100644 --- a/Makefile +++ b/Makefile @@ -13,4 +13,7 @@ run-web: web: cd client && npm run start -.PHONY: lint run dev run-web \ No newline at end of file +test: + go test -json -count=1 ./... -coverpkg=./... -coverprofile coverage.txt -covermode=atomic | gotestfmt && go tool cover -html coverage.txt && rm coverage.txt + +.PHONY: lint run dev run-web test \ No newline at end of file