Skip to content

fix(main.go): Init the new init commands so they're available #39

fix(main.go): Init the new init commands so they're available

fix(main.go): Init the new init commands so they're available #39

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
ci:
name: "Lint"
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.20.x']
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{matrix.go}}
- name: Vet
run: go vet ./...
- name: Staticcheck
uses: dominikh/staticcheck-action@v1.3.0
with:
version: "2023.1.3"
install-go: false
cache-key: ${{matrix.go}}