Report test results for 'master' / Add documentation for VS Profiler (#2672) * Add documentation for VS Profiler - This change adds documentation for the Visual Studio profiler. There is a new document under features that explains how to use the nuget package and a new sample under IntroVisualStudioDiagnoser. A new package reference has also been added to the samples project to pull in the Visual Studio specific diagnosers for the sample project. * Addressing PR feedback --------- ... #1073
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: report-test-results | |
run-name: Report test results for '${{ github.event.workflow_run.head_branch }}' / ${{ github.event.workflow_run.head_commit.message }} | |
on: | |
workflow_run: | |
workflows: [ 'run-tests' ] | |
types: | |
- completed | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
# Cleanup Old Files | |
- name: Cleanup Old Files | |
run: rm -rf $GITHUB_WORKSPACE/*.trx | |
# Download the Latest Artifacts with Unique Name | |
- name: Download Artifacts | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
run_id: ${{ github.event.workflow_run.id }} | |
# Display the Structure of Downloaded Files | |
- name: Display structure of downloaded files | |
run: ls -R | |
# Display the Contents of .trx Files | |
- name: Display .trx file contents | |
run: cat **/*.trx || echo "No .trx files found" | |
- name: Report tests results | |
uses: AndreyAkinshin/test-reporter@0e2c48ebec2007001dd77dd4bcbcd450b96d5a38 | |
with: | |
name: report | |
path: "**/*.trx" | |
reporter: dotnet-trx | |
fail-on-error: true |