Skip to content

See changelog 2024-06-30 #5

See changelog 2024-06-30

See changelog 2024-06-30 #5

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@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- 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 ./...