Skip to content

Commit b5788ef

Browse files
committedMar 8, 2025·
fix: use golangci-lint as executable in PATH env var rather than exec file in curr dir
1 parent a28f187 commit b5788ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Run GolangCI-Lint
4545
run: |
4646
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/HEAD/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.64.6
47-
./golangci-lint run || true
47+
golangci-lint run || true
4848
4949
- name: Run Staticcheck
5050
run: |

0 commit comments

Comments
 (0)
Please sign in to comment.