Problem
CI's `go test` invocations in `.github/workflows/ci.yml` and `.github/workflows/release.yml` run without `-v`, so a CI log doesn't show which checks/subtests actually ran — only a final pass/fail per package. This mirrors the verbosity improvement made to the agentic loop's own check commands for issue #63.
Done when
- `go test ./... -race -count=1` in both `.github/workflows/ci.yml` and `.github/workflows/release.yml` becomes `go test ./... -race -count=1 -v`.
Out of scope
- Any other workflow step or CI behavior change.
- Local check commands documented in the project's instructions file (unaffected by this issue).
Problem
CI's `go test` invocations in `.github/workflows/ci.yml` and `.github/workflows/release.yml` run without `-v`, so a CI log doesn't show which checks/subtests actually ran — only a final pass/fail per package. This mirrors the verbosity improvement made to the agentic loop's own check commands for issue #63.
Done when
Out of scope