Skip to content

Publish Test Results #241

Publish Test Results

Publish Test Results #241

Workflow file for this run

name: Publish Test Results
on:
workflow_run:
workflows: ["Unreal Engine Tool"]
types:
- completed
permissions:
contents: read
actions: read
checks: write
jobs:
report:
name: Report Test Results
runs-on: ubuntu-latest
steps:
- name: Report Test Results
uses: dorny/test-reporter@v1
with:
artifact: test-results-win
name: Windows Test Results
path: '*.test-result.trx'
reporter: dotnet-trx
- name: Report Test Results
uses: dorny/test-reporter@v1
with:
artifact: test-results-linux
name: Linux Test Results
path: '*.test-result.trx'
reporter: dotnet-trx
- name: Report Test Results
uses: dorny/test-reporter@v1
with:
artifact: test-results-cf
name: Cloud Framework Test Results
path: '*.test-result.trx'
reporter: dotnet-trx