We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8911a25 commit 283c98aCopy full SHA for 283c98a
Makefile
@@ -13,16 +13,16 @@ cluster-test:
13
go test --tags=cluster
14
15
goimports:
16
- go get golang.org/x/tools/cmd/goimports
+ go install golang.org/x/tools/cmd/goimports@latest
17
goimports -w .
18
+ go mod tidy
19
20
govet: goimports
21
go vet ./...
22
23
golint: govet
- go get github.com/golangci/golangci-lint/cmd/[email protected]
24
+ go install github.com/golangci/golangci-lint/cmd/[email protected]
25
golangci-lint run
- go mod tidy
26
27
API_DEFINITIONS_SHA=$(shell git log --oneline | grep Regenerated | head -n1 | cut -d ' ' -f 5)
28
docker-build:
0 commit comments