We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59b2902 commit 6dd3ab2Copy full SHA for 6dd3ab2
.gitignore
@@ -35,4 +35,7 @@ go.work.sum
35
36
/storage/*
37
!storage/mailer-templates
38
-!storage/migrations
+!storage/migrations
39
+
40
+coverage.html
41
+coverage.out
Makefile
@@ -20,4 +20,15 @@ bootstrap:
20
@echo "Bootstrap complete."
21
22
test:
23
- go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
+ go test -v ./...
24
25
+test-coverage:
26
+ go test -coverprofile=coverage.out ./...
27
+ go tool cover -html=coverage.out -o coverage.html
28
+ @echo "Coverage report: coverage.html"
29
30
+lint:
31
+ golangci-lint run
32
33
+lint-fix:
34
+ golangci-lint run --fix
0 commit comments