Skip to content

Commit

Permalink
Update pull-request-open.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cookienc authored May 20, 2024
1 parent cd6a399 commit 1a5b20c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/pull-request-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,15 @@ jobs:
- name: Build with Gradle
run: ./gradlew build

- name: Publish Unit Test Results
- name: Publish Test Result
uses: EnricoMi/publish-unit-test-result-action@v1
if: ${{ always() }}
if: always()
with:
files: build/test-results/**/*.xml
files: '**/build/test-results/test/TEST-*.xml'

- name: Comment Fail Test
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
token: ${{ github.token }}

0 comments on commit 1a5b20c

Please sign in to comment.