Skip to content

Commit

Permalink
[to be forcepushed out] Create testreport.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
altrisi authored Jun 26, 2024
1 parent 722b48b commit 3c042bb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/testreport.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: report
on:
workflow_run:
workflows: [ "Pull Request Builds" ]
types: [ completed ]

jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Download Test Report
uses: actions/download-artifact@v4
with:
name: gametest-results
run_id: ${{ github.event.workflow_run.id }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
with:
commit: ${{github.event.workflow_run.head_sha}}
report_paths: 'build/junit.xml'
check_name: Gametest report
summary: "Note that most functionality isn't currently tested by Gametest"

0 comments on commit 3c042bb

Please sign in to comment.