From 92a5741c84fd1596fad72893c7f102205e5976ba Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Fri, 31 Jan 2025 11:41:22 +0300 Subject: [PATCH] fix ci --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }}