From fd8cd8a24ca8c2979cefe6cedbe5343ec3d6bdf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Tue, 23 Jul 2024 10:42:48 +0300 Subject: [PATCH] .github: attempt to fix windows coverage file path --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cf7bd3b..b19a48b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,7 +32,7 @@ jobs: run: go build -v ./... - name: Test with coverage - run: go test -v -coverprofile=coverage-${{ matrix.os }}-${{ matrix.go-version }}.txt -covermode=count ./... + run: go test -v -coverprofile="coverage-${{ matrix.os }}-${{ matrix.go-version }}.txt" -covermode=count ./... - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4.0.1