fix: exclude scripts directory from go vet to avoid duplicate main function errors

This commit is contained in:
Krypto Kajun
2025-11-08 12:21:41 -06:00
parent 40659c1ae5
commit ed2f2a7d06

View File

@@ -107,7 +107,7 @@ run_formatting() {
}
run_static_checks() {
run_step "go-vet" go vet ./...
run_step "go-vet" go vet ./cmd/... ./pkg/... ./internal/...
if command -v golangci-lint >/dev/null 2>&1; then
run_step "golangci-lint" timeout 300 golangci-lint run --timeout=10m