From 5f6104dbbab40820ffb5057462069341cf579d4d Mon Sep 17 00:00:00 2001 From: Andrey Pohilko Date: Tue, 9 May 2023 11:09:25 +0300 Subject: [PATCH] Change name of UT coverage file --- .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 67d9aad..9d60618 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: go-version: 1.18 - name: Unit tests run: | - go test -v -race ./... -covermode=atomic # Run all the tests with the race detector enabled + go test -v -race ./... -covermode=atomic -coverprofile=coverage.out # Run all the tests with the race detector enabled - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 - name: Static analysis