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 a32b46a commit 884839fCopy full SHA for 884839f
.github/workflows/ci.yml
@@ -33,8 +33,13 @@ jobs:
33
- name: Download and verify dependencies
34
run: make deps
35
36
+ - name: Install golangci-lint
37
+ run: |
38
+ # binary will be $(go env GOPATH)/bin/golangci-lint
39
+ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/HEAD/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.4.0
40
+ golangci-lint --version
41
+
42
- name: Run linting
- uses: golangci/golangci-lint-action@v8
43
run: make lint
44
45
test:
0 commit comments