Skip to content

Commit fe78ed1

Browse files
committed
chore: Update jacoco-report action and fix kover report path
This commit updates the jacoco-report action to v1.6.1 and fixes the path to the kover report in the workflow. The updated path now points to the correct location of the kover report within the feature modules. This ensures that the coverage report is generated correctly and displayed in the workflow.
1 parent d6bb96c commit fe78ed1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/Build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
./gradlew koverXmlReportDebug
6060
6161
- name: Display local test coverage
62-
uses: madrapps/jacoco-report@v1
62+
uses: madrapps/jacoco-report@v1.6.1
6363
with:
6464
title: test coverage report
6565
min-coverage-overall: 40
@@ -68,7 +68,7 @@ jobs:
6868
skip-if-no-changes: true
6969
continue-on-error: false
7070
paths: |
71-
${{ github.workspace }}/**/build/reports/kover/reportDebug.xml
71+
${{ github.workspace }}/feature/**/build/reports/kover/reportDebug.xml
7272
token: ${{ secrets.GITHUB_TOKEN }}
7373

7474
- name: Upload lint reports

0 commit comments

Comments
 (0)