Skip to content

Commit

Permalink
feat: PR 후 테스트 리포트 발행 기능 추가 (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arachneee authored Jul 21, 2024
1 parent 3d09f45 commit 2b5345d
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/backend-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ jobs:
run:
working-directory: ./server

permissions:
contents: read

steps:
- name: CheckOut
uses: actions/checkout@v4
Expand All @@ -32,3 +29,15 @@ jobs:

- name: Test with Gradle Wrapper
run: ./gradlew clean build

- name: publish unit test results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: server/build/test-results/test/TEST-*.xml

- name: add comments to a pull request
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: server/build/test-results/test/TEST-*.xml

0 comments on commit 2b5345d

Please sign in to comment.