From e88ede52fdc93e84afd9f83d6d62735160f29e3e Mon Sep 17 00:00:00 2001 From: leehk Date: Mon, 21 Apr 2025 10:43:51 +0800 Subject: [PATCH] change report format tool --- .github/workflows/template_unit_pytest.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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