Skip to content

Windows Test Report #37

Windows Test Report

Windows Test Report #37

name: Windows Test Report
on:
workflow_run:
workflows:
- CI
types:
- completed
permissions:
contents: read
actions: read
checks: write
jobs:
org-check:
name: Check GitHub Organization
if: github.repository_owner == 'pex-tool'
runs-on: ubuntu-24.04
steps:
- name: Noop
if: false
run: |
echo "This is a dummy step that will never run."
report:
runs-on: ubuntu-24.04
needs: org-check
steps:
- uses: dorny/test-reporter@v1
with:
artifact: test-results
name: Windows Test Results
path: dist/test-results/*.xml
reporter: java-junit
fail-on-error: false
fail-on-empty: false