diff --git a/.github/workflows/template_unit_pytest.yml b/.github/workflows/template_unit_pytest.yml index 5549c5b..e620858 100644 --- a/.github/workflows/template_unit_pytest.yml +++ b/.github/workflows/template_unit_pytest.yml @@ -83,7 +83,10 @@ jobs: name: ${{ inputs.projectName }}-coverage-report path: ${{ env.TESTS_COVERAGE_REPORT_PATH }} - - name: Report Coverage - uses: codecov/report@latest + - name: Generate coverage report + uses: dawidd6/action-coverage-report@v1.6.0 with: - files: ${{ env.TESTS_COVERAGE_REPORT_PATH }} \ No newline at end of file + path: ${{ env.TESTS_COVERAGE_REPORT_PATH }} + output_format: markdown + github_token: ${{ github.token }} + minimum_coverage: 0 \ No newline at end of file