diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e483ad5..9649d0e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -27,6 +27,9 @@ jobs: - name: Build run: go build -v . + - name: Vet + run: go vet . + - name: Test run: go test -v -coverprofile coverage.out && go tool cover -html coverage.out -o coverage.html