From bc1402c20fa222cab51d5f831c79238780121220 Mon Sep 17 00:00:00 2001 From: Stefan Benz <46600784+stebenz@users.noreply.github.com> Date: Mon, 7 Jul 2025 18:12:43 +0200 Subject: [PATCH] chore: combine test coverage for core tests --- .github/workflows/core-coverage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/core-coverage.yml b/.github/workflows/core-coverage.yml index 2925980e52..a4c3030099 100644 --- a/.github/workflows/core-coverage.yml +++ b/.github/workflows/core-coverage.yml @@ -27,10 +27,10 @@ jobs: path: tmp/coverage/integration name: integration-coverage - name: merge coverages - if: ${{ unit_test_report == 'true' && integration_test_report == 'true' }} + if: ${{ inputs.unit_test_report == 'true' && inputs.integration_test_report == 'true' }} run: make core_coverage_reports - name: publish coverage - if: ${{ unit_test_report == 'true' && integration_test_report == 'true' }} + if: ${{ inputs.unit_test_report == 'true' && inputs.integration_test_report == 'true' }} uses: codecov/codecov-action@v5.4.0 with: file: full-profile.cov