Skip to content

Commit c6f1422

Browse files
committed
fixing staticcheck
1 parent 58bdd69 commit c6f1422

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci-test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
run: go vet ./...
3131

3232
- name: Install staticcheck
33-
run: go install honnef.co/go/tools/cmd/staticcheck@latest
33+
run: |
34+
go install honnef.co/go/tools/cmd/staticcheck@latest
35+
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
3436
3537
- name: Run staticcheck
3638
run: staticcheck ./...

0 commit comments

Comments
 (0)