Skip to content

Commit

Permalink
Keep junit.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuniwak committed Apr 18, 2024
1 parent 784faa1 commit c09c968
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/unity-meta-check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ jobs:
unity-meta-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# NOTE: Test no arguments for pull_request
- uses: DeNA/[email protected]

Expand Down Expand Up @@ -35,3 +36,8 @@ jobs:
report_paths: junit.xml
detailed_summary: true
if: always()

- uses: actions/upload-artifact@v4
with:
name: junit-test-report
path: junit.xml
8 changes: 7 additions & 1 deletion .github/workflows/unity-meta-check-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ jobs:
unity-meta-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# NOTE: Test no arguments for push
- uses: DeNA/[email protected]

Expand All @@ -29,6 +30,11 @@ jobs:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
if: always()

- uses: actions/upload-artifact@v4
with:
name: junit-test-report
path: junit.xml

- uses: mikepenz/action-junit-report@v3
with:
report_paths: junit.xml
Expand Down

0 comments on commit c09c968

Please sign in to comment.