Skip to content

Bump github.com/golangci/golangci-lint from 1.57.2 to 1.59.1 in /tools #201

Bump github.com/golangci/golangci-lint from 1.57.2 to 1.59.1 in /tools

Bump github.com/golangci/golangci-lint from 1.57.2 to 1.59.1 in /tools #201

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 8 * * 1' # run "At 8:00 on Monday"
jobs:
run:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
check-latest: true
- run: go mod tidy && git diff --exit-code
- run: go mod download
- run: go mod verify
- run: go build -o /dev/null ./...