Skip to content

Report test results for 'master' / Refactor dotTrace and dotMemory diagnosers All the common logic of profilers moved into SnapshotProfilerBase which is the base for DotMemoryDiagnoser and DotTraceDiagnoser. The common class is inside the main package, so it can be reused by other tools (not only by JetBrains, applicable for any command-line profiler). The dotTrace/dotMemory diagnoser classes have unique simple implementation. IsSupported is duplicated on purpose since future versions of dotTrac... #981

Report test results for 'master' / Refactor dotTrace and dotMemory diagnosers All the common logic of profilers moved into SnapshotProfilerBase which is the base for DotMemoryDiagnoser and DotTraceDiagnoser. The common class is inside the main package, so it can be reused by other tools (not only by JetBrains, applicable for any command-line profiler). The dotTrace/dotMemory diagnoser classes have unique simple implementation. IsSupported is duplicated on purpose since future versions of dotTrac...

Report test results for 'master' / Refactor dotTrace and dotMemory diagnosers All the common logic of profilers moved into SnapshotProfilerBase which is the base for DotMemoryDiagnoser and DotTraceDiagnoser. The common class is inside the main package, so it can be reused by other tools (not only by JetBrains, applicable for any command-line profiler). The dotTrace/dotMemory diagnoser classes have unique simple implementation. IsSupported is duplicated on purpose since future versions of dotTrac... #981

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:
- name: Download Artifacts
uses: dawidd6/action-download-artifact@v2
with:
workflow: ${{ github.event.workflow_run.workflow_id }}
- name: Display structure of downloaded files
run: ls -R
- name: Report tests results
uses: AndreyAkinshin/test-reporter@0e2c48ebec2007001dd77dd4bcbcd450b96d5a38
with:
name: report
path: "**/*.trx"
reporter: dotnet-trx
fail-on-error: true