Skip to content

Commit

Permalink
chore: Update jacoco-report action and fix kover report path
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
shinhyo committed Aug 27, 2024
1 parent d6bb96c commit fe78ed1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
./gradlew koverXmlReportDebug
- name: Display local test coverage
uses: madrapps/jacoco-report@v1
uses: madrapps/jacoco-report@v1.6.1
with:
title: test coverage report
min-coverage-overall: 40
Expand All @@ -68,7 +68,7 @@ jobs:
skip-if-no-changes: true
continue-on-error: false
paths: |
${{ github.workspace }}/**/build/reports/kover/reportDebug.xml
${{ github.workspace }}/feature/**/build/reports/kover/reportDebug.xml
token: ${{ secrets.GITHUB_TOKEN }}

- name: Upload lint reports
Expand Down

0 comments on commit fe78ed1

Please sign in to comment.