chore: combine test coverage for core tests

This commit is contained in:
Stefan Benz
2025-07-07 18:12:43 +02:00
parent 4974e31faa
commit bc1402c20f

View File

@@ -27,10 +27,10 @@ jobs:
path: tmp/coverage/integration path: tmp/coverage/integration
name: integration-coverage name: integration-coverage
- name: merge coverages - 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 run: make core_coverage_reports
- name: publish coverage - 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 uses: codecov/codecov-action@v5.4.0
with: with:
file: full-profile.cov file: full-profile.cov