Skip to content

build(deps): bump golang.org/x/sys from 0.22.0 to 0.24.0 (#88) #107

build(deps): bump golang.org/x/sys from 0.22.0 to 0.24.0 (#88)

build(deps): bump golang.org/x/sys from 0.22.0 to 0.24.0 (#88) #107

name: Static Analysis
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
strategy:
matrix:
go-version:
- "1.22"
- "1.23"
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/[email protected]
- name: Print staticcheck version
run: staticcheck -version
- name: Run staticcheck
run: staticcheck ./...
- name: Run go vet
run: go vet ./...