Merge pull request #35 from FLuzzi-csw/main #7
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: Static Analysis | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
static_analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- uses: WillAbides/[email protected] | |
with: | |
go-version: '1.18' | |
- name: Get dependencies | |
run: | | |
go install golang.org/x/tools/cmd/goimports@latest | |
go install golang.org/x/lint/golint@latest | |
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest | |
go install honnef.co/go/tools/cmd/[email protected] | |
- name: Vet | |
run: go vet ./... | |
- name: Goimports | |
run: test -z $(goimports -e -d . | tee /dev/stderr) | |
- name: Lint | |
run: golint -set_exit_status ./... | |
- name: Gocyclo | |
run: gocyclo -over 25 . | |
- name: Staticcheck | |
run: staticcheck ./... |