makefile: rerun tests with -v only on failure
All checks were successful
check / check (push) Successful in 1m31s

This commit is contained in:
user
2026-03-17 20:31:51 -07:00
parent 3e6dc108db
commit 6244cf039d

View File

@@ -32,7 +32,7 @@ fmt-check:
@test -z "$$(gofmt -l .)" || (echo "Files not formatted:" && gofmt -l . && exit 1)
test: ensure-web-dist
go test -timeout 30s -race -cover ./...
go test -timeout 30s -race -cover ./... || go test -timeout 30s -race -v ./...
# check runs all validation without making changes
# Used by CI and Docker build — fails if anything is wrong