We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 77b7969 + 9fee039 commit 97e0739Copy full SHA for 97e0739
1 file changed
Makefile
@@ -1,7 +1,7 @@
1
# local development targets
2
3
.PHONY: test
4
-test: mod-tidy generate
+test: mod-tidy generate lint
5
go test -v ./...
6
7
.PHONY: mod-tidy
@@ -17,6 +17,10 @@ build:
17
GOVERSION=$$(go version) \
18
goreleaser build --clean --debug --single-target --snapshot
19
20
+.PHONY: lint
21
+lint:
22
+ golangci-lint run
23
+
24
.PHONY: fuzz
25
fuzz: mod-tidy generate
26
go test -fuzz='^Fuzz' -fuzztime=10s -v ./internal/server
0 commit comments