Skip to content

Commit

Permalink
adding staticcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
lornest committed Sep 6, 2023
1 parent ab1021d commit b0a2dba
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/server-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ jobs:
with:
go-version: '1.20.x'

- name: Go vet
run: go vet ./...
- name: SCA & Go vet
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck ./...
go vet ./...
- name: Install dependencies
run: go get ./...
Expand Down

0 comments on commit b0a2dba

Please sign in to comment.