Skip to content

Test Report

Test Report #331

Workflow file for this run

name: Test Report
# Fork-safe report path for pull requests only (fork PR runs have a read-only token,
# no checks: write). Push and scheduled runs publish the same report inline via the
# 'report' job in build-test.yml (publish-report: true), before any release job.
on:
workflow_run:
workflows: ['Pull Request']
types:
- completed
permissions:
contents: read
actions: read
checks: write
jobs:
report:
runs-on: ubuntu-latest
name: Report
if: >-
github.event.workflow_run.conclusion == 'success'
|| github.event.workflow_run.conclusion == 'failure'
steps:
- name: Publish unified test report
uses: dorny/test-reporter@v3
with:
artifact: test-results
name: Test results
report-title: 'ALCops Test Results'
path: '**/*.trx'
reporter: dotnet-trx
use-actions-summary: 'false'
list-suites: 'failed'
list-tests: 'failed'
collapsed: 'never'
fail-on-error: true
fail-on-empty: true