DP-1.10: Adding test support for Nokia #204
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: [ main ] | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.19.x | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/go/pkg/mod | |
~/.cache/go-build | |
key: ${{ github.job }}-${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ github.job }}-${{ runner.os }}-go-build- | |
- name: Build | |
run: go build -v ./... | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.19.x | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/go/pkg/mod | |
~/.cache/go-build | |
key: ${{ github.job }}-${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ github.job }}-${{ runner.os }}-go-build- | |
- run: go test -v -coverprofile=profile.cov $(go list ./... | grep -v /.*test.*) | |
- name: Send coverage | |
uses: shogo82148/actions-goveralls@v1 | |
with: | |
path-to-profile: profile.cov | |
static_analysis: | |
name: Static Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.19' | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/go/pkg/mod | |
~/.cache/go-build | |
~/.cache/staticcheck | |
key: ${{ github.job }}-${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ github.job }}-${{ runner.os }}-go-build- | |
- name: Go vet | |
run: GOGC=30 go vet ./... | |
- name: Gofmt | |
run: | | |
# gofmt always returns true, so we use grep '^' which returns | |
# true on non-empty output, but will otherwise passthrough all | |
# output lines. | |
if gofmt -d -s . | grep '^'; then | |
exit 1 | |
fi | |
- name: Get goimports | |
run: go install golang.org/x/tools/cmd/goimports@latest | |
- name: Goimports | |
run: | | |
# goimports always returns true, so we use grep '^' which returns | |
# true on non-empty output, but will otherwise passthrough all | |
# output lines. | |
# | |
# goimports does not support "gofmt -s" so both goimports and gofmt are | |
# required. | |
if goimports -d . | grep '^'; then | |
exit 1 | |
fi | |
- name: Get revive | |
run: go install github.com/mgechev/revive@latest | |
- name: Run revive | |
run: revive ./... | |
- name: Get staticcheck | |
run: go install honnef.co/go/tools/cmd/staticcheck@latest | |
- name: Run staticcheck | |
run: GOGC=30 staticcheck ./... |