FIx API documentation link badge #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Analysis | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
static_analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: WillAbides/setup-go-faster@v1 | |
with: | |
go-version: 'stable' | |
- name: Install static analysis tools | |
run: | | |
go install github.com/securego/gosec/v2/cmd/gosec@latest | |
go install golang.org/x/vuln/cmd/govulncheck@latest | |
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest | |
go install honnef.co/go/tools/cmd/staticcheck@latest | |
go install mvdan.cc/gofumpt@latest | |
- name: Vet | |
run: go vet ./... | |
- name: Gofumpt | |
run: test -z $(gofumpt -d -e . | tee /dev/stderr) | |
- name: Gocyclo | |
run: gocyclo -over 15 . | |
- name: Staticcheck | |
run: staticcheck ./... | |
- name: Gosec | |
run: gosec ./... | |
- name: Vulncheck | |
run: govulncheck ./... |