Skip to content

Pointing to fork

Pointing to fork #2

Workflow file for this run

name: Go lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Set up Go ^1.19
uses: actions/setup-go@v2
with:
go-version: ^1.19
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Tidy
run: go mod tidy && [ -z "$(git status -s)" ]
- name: Lint
run: make lint
- name: Vet
run: make vet