-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
40 lines (34 loc) · 1.19 KB
/
report-test-results.yaml
File metadata and controls
40 lines (34 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
if: ${{ github.event.workflow_run.conclusion != 'cancelled' }}
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@v6
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