From e03dbc57ec9cd3e2533fb4f7255640a4cf5604cb Mon Sep 17 00:00:00 2001 From: Nelson Vides Date: Tue, 17 Sep 2024 13:33:40 +0200 Subject: [PATCH] Update codecov github actions --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 590aaf6..59b181b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,10 @@ jobs: - run: rebar3 as test do cover, covertool generate if: ${{ matrix.otp == '27' }} - name: Upload code coverage - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v4 if: ${{ matrix.otp == '27' }} with: - file: "_build/test/covertool/segmented_cache.covertool.xml" + files: _build/test/covertool/segmented_cache.covertool.xml + token: ${{ secrets.CODECOV_TOKEN }} + fail_ci_if_error: true + verbose: true