Skip to content

See changelog 2024-11-17 #16

See changelog 2024-11-17

See changelog 2024-11-17 #16

Workflow file for this run

name: Audit
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
audit:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Download mods
run: go mod download
- name: Build
run: go build -v ./...
- name: Run go vet
run: go vet ./...
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Run staticcheck
run: staticcheck ./...
- name: Run tests
run: go test ./...