We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cbe5d7 commit 73f116bCopy full SHA for 73f116b
Makefile
@@ -84,6 +84,11 @@ go_protoc-go-inject-tag:
84
go_clean_deps:
85
go mod tidy && go mod vendor
86
87
+.PHONY: go_lint
88
+## Run all linters that are triggered by the CI pipeline
89
+go_lint:
90
+ golangci-lint run ./...
91
+
92
.PHONY: gofmt
93
## Format all the .go files in the project in place.
94
gofmt:
@@ -326,11 +331,6 @@ test_p2p:
326
331
test_p2p_addrbook:
327
332
go test -run AddrBook -v -count=1 ./p2p/...
328
333
329
-.PHONY: go_lint
330
-## Run all linters that are triggered by the CI pipeline
-go_lint:
- golangci-lint run ./...
-
334
.PHONY: benchmark_sortition
335
## Benchmark the Sortition library
336
benchmark_sortition:
0 commit comments