Skip to content

Commit

Permalink
fix(CI): test.exec 누락으로 인한 jacocoTestCoverageVerification 스킵 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
limehee committed Dec 8, 2024
1 parent f148320 commit 72faa3f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test-and-quality-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ jobs:
name: coverage-report
path: '**/build/reports/jacoco/test/jacocoTestReport.xml'

- name: Upload exec data
if: always()
uses: actions/upload-artifact@v4
with:
name: exec-data
path: '**/build/jacoco/test.exec'

- name: Test Reporter
id: reporter
uses: dorny/test-reporter@v1
Expand Down Expand Up @@ -109,6 +116,11 @@ jobs:
with:
name: coverage-report

- name: Download exec data
uses: actions/download-artifact@v4
with:
name: exec-data

- name: Setup Java and Gradlew
uses: ./.github/actions/setup-java-and-gradlew
with:
Expand Down

0 comments on commit 72faa3f

Please sign in to comment.