Skip to content

Bump golang.org/x/net from 0.21.0 to 0.23.0 (#321) #745

Bump golang.org/x/net from 0.21.0 to 0.23.0 (#321)

Bump golang.org/x/net from 0.21.0 to 0.23.0 (#321) #745

Workflow file for this run

name: lint
on:
push:
branches:
- master
pull_request:
branches:
- master
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'
- 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 ./...