Skip to content

Commit

Permalink
Workflow typo fix and always run static checker.
Browse files Browse the repository at this point in the history
  • Loading branch information
didrocks committed Mar 19, 2021
1 parent 50294fe commit 43b9691
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ jobs:
- name: Go vet
run: go vet ./...
if: ${{ always() }}
- name: Install statick checker
- name: Install static checker
run: |
go install honnef.co/go/tools/cmd/staticcheck
if: ${{ always() }}
- name: Staticcheck
run: staticcheck ./...
if: ${{ always() }}
Expand All @@ -44,6 +45,7 @@ jobs:
export PATH=$PATH:$(go env GOPATH)/bin
go get github.com/securego/gosec/cmd/gosec
gosec ./...
if: ${{ always() }}
- name: Module files are up to date
run: |
go mod tidy
Expand Down

0 comments on commit 43b9691

Please sign in to comment.