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 a576862 commit e81f4c5Copy full SHA for e81f4c5
Makefile
@@ -10,7 +10,7 @@ help:
10
@echo " tidy tidy go mod"
11
12
$(GOBIN)/golangci-lint:
13
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOBIN) v1.59.0
+ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOBIN) v2.8.0
14
15
.PHONY: tools
16
tools: $(GOBIN)/golangci-lint
@@ -19,7 +19,7 @@ lint: tools
19
$(GOBIN)/golangci-lint run ./...
20
21
lint-ci: tools
22
- $(GOBIN)/golangci-lint run ./... --out-format=github-actions --timeout=5m
+ $(GOBIN)/golangci-lint run ./... --output.text.path=stdout --timeout=5m
23
24
generate:
25
go generate ./...
0 commit comments