Release workflow runs go test but not go vet. CI runs both. Keep parity.
Fix
Add go vet ./... step before building binaries in release.yml.
## Problem
Release workflow runs `go test` but not `go vet`. CI runs both. Keep parity.
## Fix
Add `go vet ./...` step before building binaries in `release.yml`.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Problem
Release workflow runs
go testbut notgo vet. CI runs both. Keep parity.Fix
Add
go vet ./...step before building binaries inrelease.yml.