From cd06af8e437369bfb3d519b5960762a817d737ad Mon Sep 17 00:00:00 2001 From: Richard Schwab Date: Sun, 24 Apr 2022 16:10:45 +0200 Subject: [PATCH] Skip codecov uploads in scheduled daily tests (#778) We can only upload a limited number of coverage reports for any commit anyway, this avoids turning these into test failures. --- .github/workflows/ci-cd.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index a2f484d6..9665d579 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -611,6 +611,7 @@ jobs: timeout-minutes: 6 - name: Upload coverage + if: ${{ github.event_name != 'schedule' }} uses: codecov/codecov-action@v3.1.0 with: file: ./coverage.xml