Skip to content

#8 Setting up CI checks via GH Actions #1

#8 Setting up CI checks via GH Actions

#8 Setting up CI checks via GH Actions #1

Workflow file for this run

name: lint
on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop"]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
check-latest: true
- name: Go Format
run: gofmt -s -w . && git diff --exit-code
- name: Go Vet
run: go vet ./...
- name: Go Tidy
run: go mod tidy && git diff --exit-code
- name: Go Mod
run: go mod download
- name: Go Mod Verify
run: go mod verify
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
check-latest: true
- name: Build
run: go build -v ./...
static-checks:
name: Static Checks
runs-on: ubuntu-latest
timeout-minutes: 10
needs: [lint, build]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
check-latest: true
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Install nilaway
run: go install go.uber.org/nilaway/cmd/nilaway@latest
- name: GolangCILint
uses: golangci/[email protected]
with:
version: latest
args: --timeout 5m
- name: Staticcheck
run: staticcheck ./...
- name: Nilaway
run: nilaway ./...