From d56af50b2c6def4b86ff188bddb62e6282b3a029 Mon Sep 17 00:00:00 2001 From: Tihomir Krasimirov Mateev Date: Thu, 24 Oct 2024 21:38:04 +0300 Subject: [PATCH] Restore missing step (#3028) * Restore missing step * Seems is not considered * Not really sure what is happening --- .github/workflows/integration.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 921327130..d1fdc656a 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -54,10 +54,13 @@ jobs: JVM_OPTS: -Xmx3200m TERM: dumb - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} + - name: Upload test failure reports to Codecov uses: codecov/test-results-action@v1 with: fail_ci_if_error: false files: ./target/surefire-reports/TEST*,./target/failsafe-reports/TEST* - codecov_yml_path: ./.github/codecov.yml verbose: ${{ runner.debug }} token: ${{ secrets.CODECOV_TOKEN }}