Skip to content

Commit 884839f

Browse files
committed
fix
1 parent a32b46a commit 884839f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,13 @@ jobs:
3333
- name: Download and verify dependencies
3434
run: make deps
3535

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+
3642
- name: Run linting
37-
uses: golangci/golangci-lint-action@v8
3843
run: make lint
3944

4045
test:

0 commit comments

Comments
 (0)