From 7406d14e9e93479abff45194b88ce51921c6366f Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 26 Sep 2023 18:40:06 +0200 Subject: [PATCH] :bug: Fixed issue with code cov (#59) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b4d6a9..63fbf90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: - name: Run Unit Tests with Coverage run: go test -coverprofile=coverage.txt -covermode=atomic -v ./... - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v3 with: # token is not needed for public repositories files: coverage.txt