Test Report #18
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 | |
# https://github.com/dorny/test-reporter#recommended-setup-for-public-repositories | |
# This workflow is for test report | |
on: | |
workflow_run: | |
workflows: ["Create Draft Release", "Test Code"] | |
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 |