blob: 62ebbfe284171534f52f7e62ce761af9374eedeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
name: Build WiX Toolset v4 Test Report
on:
workflow_run:
workflows: [ 'Build WiX Toolset v4' ]
types: [ completed ]
branches-ignore:
- master
permissions:
actions: read
checks: write
jobs:
report:
runs-on: ubuntu-latest
steps:
- name: Generate Test Reports
uses: dorny/test-reporter@v1
with:
artifact: logs_${{ github.event.workflow_run.id }}
name: Xunit Tests
path: 'TestResults/*.trx'
reporter: dotnet-trx
|