22 строки
504 B
YAML
22 строки
504 B
YAML
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 |