Generate Test Report for workflow Test run 78 branch dependabot/nuget/Microsoft.Extensions.DependencyInjection.Abstractions-8.0.2 #79
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Report | |
run-name: Generate Test Report for workflow ${{ github.event.workflow_run.name }} run ${{ github.event.workflow_run.run_number }} branch ${{ github.event.workflow_run.head_branch }} | |
# https://github.com/dorny/test-reporter#recommended-setup-for-public-repositories | |
# This workflow is for test report | |
on: | |
workflow_run: | |
workflows: [ "Test" ] | |
types: | |
- completed | |
permissions: | |
contents: read | |
actions: read | |
checks: write | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Test Report 🧪 | |
uses: dorny/test-reporter@v1 | |
with: | |
artifact: test-results | |
name: Unit Tests | |
path: "*.trx" | |
reporter: dotnet-trx | |
fail-on-error: false |