Skip to content

Commit 0bcc7a5

Browse files
committed
ci: add verbose flag to Go test commands in CI workflow
Enable verbose output for both unit and E2E Go tests in GitHub Actions to improve test run visibility and aid debugging when tests fail.
1 parent b4a83a4 commit 0bcc7a5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
with:
5050
persist-credentials: false
5151
- uses: jdx/mise-action@6d1e696aa24c1aa1bcc1adea0212707c71ab78a8 # v3.6.1
52-
- run: go test ./...
52+
- run: go test -v ./...
5353

5454
e2e-test:
5555
name: E2E Test
@@ -77,7 +77,7 @@ jobs:
7777
echo "Service failed to start"
7878
exit 1
7979
- name: Run E2E tests
80-
run: go test -tags e2e ./e2e/...
80+
run: go test -v -tags e2e ./e2e/...
8181
- name: Show logs on failure
8282
if: failure()
8383
run: docker compose logs

0 commit comments

Comments
 (0)