Skip to content

.github: bump vmactions/freebsd-vm from 1.5.3 to 1.5.5 #563

.github: bump vmactions/freebsd-vm from 1.5.3 to 1.5.5

.github: bump vmactions/freebsd-vm from 1.5.3 to 1.5.5 #563

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Install Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v5.0.2
with:
go-version: '1.26'
- 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 ./...