We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 86442df + 3bc9975 commit 87bff67Copy full SHA for 87bff67
2 files changed
Makefile
@@ -121,7 +121,7 @@ all: binaries
121
122
check: proto-fmt ## run all linters
123
@echo "$(WHALE) $@"
124
- golangci-lint run
+ GOGC=75 golangci-lint run
125
126
ci: check binaries checkprotos coverage coverage-integration ## to be used by the CI
127
script/setup/install-dev-tools
@@ -23,3 +23,9 @@ set -eu -o pipefail
23
go get -u github.com/stevvooe/protobuild
24
go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
25
go get -u github.com/cpuguy83/go-md2man
26
+
27
+(
28
+ cd $GOPATH/src/github.com/golangci/golangci-lint/cmd/golangci-lint
29
+ git checkout v1.18.0
30
+ go build -v && go install
31
+)
0 commit comments