Publish BabbleSim Tests Results #1088
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish BabbleSim Tests Results | |
on: | |
workflow_run: | |
workflows: ["BabbleSim Tests"] | |
types: | |
- completed | |
jobs: | |
bsim-test-results: | |
name: "Publish BabbleSim Test Results" | |
runs-on: ubuntu-22.04 | |
if: github.event.workflow_run.conclusion != 'skipped' | |
steps: | |
- name: Download artifacts | |
uses: dawidd6/action-download-artifact@v3 | |
with: | |
run_id: ${{ github.event.workflow_run.id }} | |
- name: Publish BabbleSim Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
with: | |
check_name: BabbleSim Test Results | |
comment_mode: off | |
commit: ${{ github.event.workflow_run.head_sha }} | |
event_file: event/event.json | |
event_name: ${{ github.event.workflow_run.event }} | |
files: "bsim-test-results/**/bsim_results.xml" |