Unit Test Results #1425
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: Unit Test Results | |
on: | |
workflow_run: | |
workflows: ["Corelibrary Build & Publish"] | |
types: | |
- completed | |
permissions: {} | |
jobs: | |
unit-test-results: | |
name: Unit Test Results | |
runs-on: ubuntu-latest | |
if: > | |
github.event.workflow_run.conclusion != 'skipped' && ( | |
github.event.sender.login == 'dependabot[bot]' || | |
github.event.workflow_run.head_repository.full_name != github.repository | |
) | |
permissions: | |
checks: write | |
pull-requests: write | |
steps: | |
- name: Download Artifacts | |
uses: dawidd6/action-download-artifact@v6 | |
with: | |
run_id: ${{ github.event.workflow_run.id }} | |
path: artifacts | |
- name: Extract Artifacts | |
run: | | |
for file in artifacts/*.zip; do | |
if [[ -f "$file" ]]; then | |
dir="${file/%.zip/}" | |
mkdir -p "$dir" | |
unzip -d "$dir" "$file" | |
fi | |
done | |
- name: Publish Unit Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
with: | |
commit: ${{ github.event.workflow_run.head_sha }} | |
event_file: artifacts/Event File/event.json | |
event_name: ${{ github.event.workflow_run.event }} | |
files: "artifacts/*/**/*.xml" |