mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-03 05:35:29 +00:00
24 lines
415 B
YAML
24 lines
415 B
YAML
name: Publish Test Results
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ['Build']
|
|
types:
|
|
- completed
|
|
|
|
permissions:
|
|
contents: read
|
|
actions: read
|
|
checks: write
|
|
|
|
jobs:
|
|
report:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Publish Test Results
|
|
uses: phoenix-actions/test-reporting@v12
|
|
with:
|
|
artifact: /results-(.*)/
|
|
name: '$1'
|
|
path: '*.trx'
|
|
reporter: dotnet-trx
|