Skip to content

Better space handling ? #403

Better space handling ?

Better space handling ? #403

Workflow file for this run

on: [push, pull_request]
name: Static Analysis
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.19.x
- name: Checkout code
uses: actions/checkout@v2
- name: Vet
run: go vet ./...
- name: Staticcheck
run: |
go install honnef.co/go/tools/cmd/[email protected]
staticcheck ./...