From 91d13d497806aa04b148f76ff30f3ee097f00601 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kh=C3=A1nh=20Ho=C3=A0ng?= Date: Sun, 1 Dec 2024 15:24:21 +0700 Subject: [PATCH] chore(testing): Update coverage report path in GitHub Actions workflow (#29) Changed the coverage report path to use `coverage/clover.xml` in the Codacy coverage reporter action. This ensures the correct coverage report is used for analysis, improving the accuracy of reporting in Codacy. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e1ea8b0..51a1863 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -90,7 +90,7 @@ jobs: uses: codacy/codacy-coverage-reporter-action@89d6c85cfafaec52c72b6c5e8b2878d33104c699 with: project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} - coverage-reports: coverage + coverage-reports: coverage/clover.xml deno: name: Deno needs: lints