aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test-report.yml
blob: 8780851a903fe94a350816fc07998c8a9ce59530 (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 v5 Test Report

on:
  workflow_run:
    workflows: [ 'Build WiX Toolset v5' ]
    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