chore(ci): remove || true from go test in go-cache; let failures surface

This commit is contained in:
Jesse Hallam 2026-05-25 13:02:20 -03:00
parent 89200a2b95
commit ec0d02d02f
No known key found for this signature in database
GPG key ID: B1006FD711F7B1D8

View file

@ -445,8 +445,8 @@ go-cache: setup-go-work install-ci-tools ## Pre-warm Go module and build cache f
@(cd public && $(GO) mod download all)
$(GO) build ./...
@(cd public && $(GO) build ./...)
$(GO) test -run=^$$ -count=1 ./... || true
@(cd public && $(GO) test -run=^$$ -count=1 ./... || true)
$(GO) test -run=^$$ -count=1 ./...
@(cd public && $(GO) test -run=^$$ -count=1 ./...)
test-compile: setup-go-work gotestsum ## Compile tests.
@echo COMPILE TESTS