Skip to content

Bump honnef.co/go/tools from 0.4.6 to 0.4.7 #200

Bump honnef.co/go/tools from 0.4.6 to 0.4.7

Bump honnef.co/go/tools from 0.4.6 to 0.4.7 #200

Workflow file for this run

---
name: Lint
on:
push:
branches:
- master
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.19", "1.20"]
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Install linter
run: go install honnef.co/go/tools/cmd/staticcheck
- name: Lint
run: staticcheck ./...