ci: add golint

This commit is contained in:
Vincent Young 2023-11-19 19:52:14 -05:00
parent 7705e7ae1c
commit 7617110dbd
No known key found for this signature in database
GPG Key ID: 84A0830C90354A56

View File

@ -17,6 +17,12 @@ jobs:
with:
go-version: '1.19'
- name: Install golint
run: go install golang.org/x/lint/golint@latest
- name: Run golint
run: golint -set_exit_status ./...
- name: Build
run: go build ./...