We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dede9e9 commit d64ec09Copy full SHA for d64ec09
.github/workflows/golangci-lint.yml
@@ -7,13 +7,15 @@ on:
7
- "**.go"
8
- "scripts/errcheck_excludes.txt"
9
- ".github/workflows/golangci-lint.yml"
10
+ - ".golangci.yml"
11
pull_request:
12
paths:
13
- "go.sum"
14
- "go.mod"
15
16
17
18
19
20
jobs:
21
golangci:
Makefile.common
@@ -160,7 +160,7 @@ endif
160
update-go-deps:
161
@echo ">> updating Go dependencies"
162
@for m in $$($(GO) list -mod=readonly -m -f '{{ if and (not .Indirect) (not .Main)}}{{.Path}}{{end}}' all); do \
163
- $(GO) get $$m; \
+ $(GO) get -d $$m; \
164
done
165
GO111MODULE=$(GO111MODULE) $(GO) mod tidy
166
ifneq (,$(wildcard vendor))
0 commit comments