Skip to content

v1.1.0 release

v1.1.0 release #5

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Install analysis tools
run: |
go install honnef.co/go/tools/cmd/staticcheck@v0.6.1
go install golang.org/x/tools/cmd/deadcode@v0.41.0
- name: Run tests
run: go test ./...
- name: Run go vet
run: go vet ./...
- name: Run staticcheck
run: staticcheck ./...
- name: Run deadcode
run: deadcode ./...