Skip to content

Commit

Permalink
chore: coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
kmruiz committed May 7, 2024
1 parent aa60a2d commit 4165f2b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/quality-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ jobs:
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
- name: Generate Coverage Report
run: |
./gradlew --quiet --console=plain "jacocoTestReport"
- uses: actions/upload-artifact@v4
name: Upload Unit Test Coverage
with:
Expand Down Expand Up @@ -112,6 +115,9 @@ jobs:
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
- name: Generate Coverage Report
run: |
./gradlew --quiet --console=plain "jacocoTestReport"
- uses: actions/upload-artifact@v4
name: Upload Functional Test Coverage
with:
Expand All @@ -136,9 +142,6 @@ jobs:
- uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: Generate Coverage Report
run: |
./gradlew --quiet --console=plain "jacocoTestReport"
- uses: madrapps/[email protected]
with:
paths: "**/build/reports/jacoco/test/jacocoTestReport.xml"
Expand Down

0 comments on commit 4165f2b

Please sign in to comment.