Skip to content

go.mod: bump golang.org/x/sys from 0.34.0 to 0.35.0 #209

go.mod: bump golang.org/x/sys from 0.34.0 to 0.35.0

go.mod: bump golang.org/x/sys from 0.34.0 to 0.35.0 #209

Workflow file for this run

name: Static Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.0.2
with:
go-version: '1.24'
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Run staticcheck
run: |
staticcheck -version
staticcheck -- ./...
- name: Run go vet
run: go vet ./...