Skip to content

Bump golang.org/x/tools from 0.33.0 to 0.34.0 #882

Bump golang.org/x/tools from 0.33.0 to 0.34.0

Bump golang.org/x/tools from 0.33.0 to 0.34.0 #882

Workflow file for this run

name: lint
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: 'go.mod'
- name: Run linters
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go install golang.org/x/lint/golint@latest
golint --set_exit_status $(go list ./...)
go vet ./...