Skip to content

Commit

Permalink
[Test] : 테스트 커버리지 결과 아카이빙0
Browse files Browse the repository at this point in the history
  • Loading branch information
wellbeing-dough committed Jan 23, 2024
1 parent 4429b4f commit 686f25e
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -47,11 +47,19 @@ jobs:
id: buildAndTests
continue-on-error: true # 테스트에 실패해도 계속 로그찍기

- name: Upload Jacoco Report
uses: actions/upload-artifact@v3
- name: JaCoCo Code Coverage Report
id: jacoco_reporter
uses: PavanMudigonda/jacoco-reporter@v4.9
with:
name: jacoco-report
path: build/reports/jacoco/test/html/index.html
coverage_results_path: jacoco-report/test.xml
coverage_report_name: Coverage
coverage_report_title: JaCoCo
github_token: ${{ secrets.GITHUB_TOKEN }}
skip_check_run: false
minimum_coverage: 20
fail_below_threshold: false
publish_only_summary: false


- name: Archive test results if tests failed # 테스트가 실패하면 결과 아카이빙
if: steps.buildAndTests.outcome == 'failure'

0 comments on commit 686f25e

Please sign in to comment.