Skip to content

Custom spacing

Custom spacing #599

Workflow file for this run

name: Static Analysis
on: [push, pull_request]
permissions:
contents: read
jobs:
static_analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: WillAbides/[email protected]
with:
go-version: '1.21.x'
- name: Install analysis tools
run: go install honnef.co/go/tools/cmd/[email protected]
- name: Vet
run: go vet ./...
- name: Staticcheck
run: staticcheck ./...