Merge pull request #364 from appgate/dependabot/go_modules/github.com… #726
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: Go | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ^1.20 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
- name: Fmt check | |
run: make fmtcheck | |
- name: Unit tests | |
run: make test | |
- name: Build | |
run: make build | |
lint: | |
name: "Static analysis" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: WillAbides/[email protected] | |
with: | |
go-version: "1.20.x" | |
- run: "GO111MODULE=on go install honnef.co/go/tools/cmd/[email protected]" | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/staticcheck | |
key: staticcheck-${{ github.sha }} | |
restore-keys: | | |
staticcheck- | |
- run: "go vet ./..." | |
- run: "$(go env GOPATH)/bin/staticcheck -go 1.20 ./..." |