Skip to content

Commit

Permalink
fix: 테스트 결과 보고서 경로 수정 (#55)
Browse files Browse the repository at this point in the history
* fix: 테스트 결과 보고서 경로 수정

* refactor: actions 버전 최신화
  • Loading branch information
70825 authored May 28, 2024
1 parent a37fc2a commit 963be64
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:

steps:
- name: Repository 체크아웃
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: JDK 21 설정
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 21
distribution: corretto

- name: Gradle 캐싱
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
Expand All @@ -45,13 +45,13 @@ jobs:
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: '**/backend/build/test-results/test/TEST-*.xml'
files: '**/build/test-results/test/TEST-*.xml'

- name: 테스트 실패 시, 실패한 코드 라인에 Check 코멘트를 등록
uses: mikepenz/action-junit-report@v3
uses: mikepenz/action-junit-report@v4
if: always()
with:
report_paths: '**/backend/build/test-results/test/TEST-*.xml'
report_paths: '**/build/test-results/test/TEST-*.xml'
token: ${{ github.token }}

- name: build 실패 시 Slack으로 알립니다
Expand Down

0 comments on commit 963be64

Please sign in to comment.