We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97bb8fb commit 2bb05e2Copy full SHA for 2bb05e2
2 files changed
.gitignore
@@ -1 +1,2 @@
1
/dist
2
+/cover.out
Makefile
@@ -20,3 +20,8 @@ build:
20
.PHONY: fuzz
21
fuzz: mod-tidy generate
22
go test -fuzz='^Fuzz' -fuzztime=10s -v ./internal/server
23
+
24
+.PHONY: cover
25
+cover: mod-tidy generate
26
+ go test -v -covermode=atomic -coverprofile=cover.out -coverpkg=./... ./...
27
+ go tool cover -html=cover.out
0 commit comments