diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b23710c..fa80932 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,14 +61,14 @@ jobs: if: env.COVERAGE != 1 run: | go install gotest.tools/gotestsum@latest - gotestsum --format testdox ./... -tags=testutils-v -cpu 2 -timeout 60s -race + gotestsum --format testdox ./... -tags=testutils -v -cpu 2 -timeout 60s -race - name: Tests with coverage env: COVERAGE: ${{ matrix.coverage }} if: env.COVERAGE == 1 run: | go install gotest.tools/gotestsum@latest - gotestsum --format testdox ./... -tags=testutils-v -cpu 2 -timeout 60s -race -cover -coverprofile=coverage.txt -covermode=atomic "$d" + gotestsum --format testdox ./... -tags=testutils -v -cpu 2 -timeout 60s -race -cover -coverprofile=coverage.txt -covermode=atomic "$d" - name: Coverage env: COVERAGE: ${{ matrix.coverage }}