From 52ff00c28d8086fd8f205d758b52f30864ca0b7d Mon Sep 17 00:00:00 2001 From: patrick96 Date: Thu, 1 Aug 2024 11:26:19 +0200 Subject: [PATCH] fix(ci): Get Codecov to work again Mainly updates the plugin --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5eb3a6d..297f8f9c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -144,11 +144,16 @@ jobs: lcov --remove cov_total.info "${PWD}/build/*" "${PWD}/tests/*" "${PWD}/lib/*" -o cov.info - name: Upload Coverage if: ${{ matrix.polybar_build_type == 'tests' }} - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: flags: unittests + # We provide our own coverage files + disable_search: true + # Disable all plugins, we handle all preparations ourselves + plugins: noop files: ./cov.info fail_ci_if_error: true + verbose: true - name: Upload Logs if: failure() uses: actions/upload-artifact@v2