From f906fda2f10d1d3216df3d4a806c4c6cda944087 Mon Sep 17 00:00:00 2001 From: sighphyre Date: Fri, 8 Dec 2023 15:05:15 +0200 Subject: [PATCH] turn on verbose logging in test build pipeline --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3dec5d3..24529c5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: run: go test -v ./... -tags='norace' - name: Run all tests with race detection timeout-minutes: 1 - run: go test -race -covermode atomic -coverprofile=profile.cov -v ./... -tags='!norace' + run: go test -race -v -covermode atomic -coverprofile=profile.cov -v ./... -tags='!norace' - name: Send coverage uses: shogo82148/actions-goveralls@v1 with: