From e79efdacf906085260b717d1cc8feef20d20f24a Mon Sep 17 00:00:00 2001 From: Nicola Murino Date: Mon, 19 Jun 2023 19:17:43 +0200 Subject: [PATCH] CI: run tests in verbose mode It's helpful to have more detailed logs, such as how long it took to run a single test --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b6dd00d..e78e18e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,7 +111,7 @@ jobs: git diff --exit-code - name: Test - run: go test -race ./... + run: go test -v -race ./... env: PGX_TEST_DATABASE: ${{ matrix.pgx-test-database }} PGX_TEST_UNIX_SOCKET_CONN_STRING: ${{ matrix.pgx-test-unix-socket-conn-string }}