fix(golang-rewrite): correct go build command in lint workflow

This commit is contained in:
Trevor Brown 2024-02-03 14:46:46 -05:00
parent c5092c6dbf
commit 87d3c06cf5

View File

@ -40,7 +40,7 @@ jobs:
- name: Lint
run: staticcheck -tests -show-ignored ./...
- name: Build
run: build -v ./...
run: go build -v ./...
actions:
runs-on: ubuntu-latest