|
29 | 29 | - name: Run task 'in-tests-core' |
30 | 30 | shell: cmd |
31 | 31 | run: ./build.cmd in-tests-core -e |
| 32 | + # Report test results with unique name |
| 33 | + - name: Report tests results |
| 34 | + uses: dorny/test-reporter@v2 |
| 35 | + if: always() |
| 36 | + with: |
| 37 | + name: test-windows-core-${{ matrix.os }} |
| 38 | + path: "**/*.trx" |
| 39 | + reporter: dotnet-trx |
32 | 40 | # Upload Artifacts with Unique Name |
33 | 41 | - name: Upload test results |
34 | 42 | uses: actions/upload-artifact@v4 |
|
60 | 68 | - name: Run task 'in-tests-full' |
61 | 69 | shell: cmd |
62 | 70 | run: ./build.cmd in-tests-full -e |
| 71 | + # Report test results with unique name |
| 72 | + - name: Report tests results |
| 73 | + uses: dorny/test-reporter@v2 |
| 74 | + if: always() |
| 75 | + with: |
| 76 | + name: test-windows-full-${{ matrix.os }} |
| 77 | + path: "**/*.trx" |
| 78 | + reporter: dotnet-trx |
63 | 79 | # Upload Artifacts with Unique Name |
64 | 80 | - name: Upload test results |
65 | 81 | uses: actions/upload-artifact@v4 |
@@ -100,6 +116,14 @@ jobs: |
100 | 116 | run: ./build.cmd unit-tests -e |
101 | 117 | - name: Run task 'in-tests-core' |
102 | 118 | run: ./build.cmd in-tests-core -e |
| 119 | + # Report test results with unique name |
| 120 | + - name: Report tests results |
| 121 | + uses: dorny/test-reporter@v2 |
| 122 | + if: always() |
| 123 | + with: |
| 124 | + name: test-linux-${{ matrix.os }} |
| 125 | + path: "**/*.trx" |
| 126 | + reporter: dotnet-trx |
103 | 127 | # Upload Artifacts with Unique Name |
104 | 128 | - name: Upload test results |
105 | 129 | uses: actions/upload-artifact@v4 |
@@ -139,6 +163,14 @@ jobs: |
139 | 163 | run: ./build.cmd unit-tests -e |
140 | 164 | - name: Run task 'in-tests-core' |
141 | 165 | run: ./build.cmd in-tests-core -e |
| 166 | + # Report test results with unique name |
| 167 | + - name: Report tests results |
| 168 | + uses: dorny/test-reporter@v2 |
| 169 | + if: always() |
| 170 | + with: |
| 171 | + name: test-macos(${{ matrix.os.arch }}) |
| 172 | + path: "**/*.trx" |
| 173 | + reporter: dotnet-trx |
142 | 174 | # Upload Artifacts with Unique Name |
143 | 175 | - name: Upload test results |
144 | 176 | uses: actions/upload-artifact@v4 |
|
0 commit comments