Skip to content

Merge pull request #2 from kairos-io/2069-mdns-kms #21

Merge pull request #2 from kairos-io/2069-mdns-kms

Merge pull request #2 from kairos-io/2069-mdns-kms #21

name: Static Analysis
on: [push, pull_request]
concurrency:
group: static-analysis-${{ github.head_ref || github.ref }}-${{ github.repository }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Get dependencies
run: |
# Needed for github.com/google/go-tspi/tspi
sudo apt-get install libtspi-dev
go install golang.org/x/tools/cmd/goimports@latest
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
go install golang.org/x/lint/golint@latest
go install honnef.co/go/tools/cmd/staticcheck@v0.2.0
- name: Vet
run: go vet -tags ci ./...
- name: Goimports
run: test -z $(goimports -e -d . | tee /dev/stderr)
- name: Gocyclo
run: gocyclo -over 30 .
- name: Golint
run: golint -set_exit_status $(go list -tags ci ./...)
- name: Staticcheck
run: staticcheck -go 1.12 ./...