Skip to content

Commit 79fe544

Browse files
authored
Change test result action to dorny/test-reporter
1 parent 577bdd8 commit 79fe544

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,14 @@ jobs:
1717
run: |
1818
docker build --build-arg NUGET_PACKAGE_VERSION=${{ env.VERSION }} --build-arg COMPANIES_HOUSE_API_KEY=${{ secrets.COMPANIES_HOUSE_API_KEY }} -f ./Dockerfile --output ./ .
1919
- name: Publish Unit Test Results
20-
uses: EnricoMi/publish-unit-test-result-action@v2
20+
uses: dorny/test-reporter@v1
2121
if: always()
2222
with:
23-
trx_files: TestResults/**/*.trx
23+
name: Test Results
24+
path: TestResults/**/*.trx
25+
reporter: dotnet-trx
26+
fail-on-error: true
27+
fail-on-empty: true
2428
- name: NuGet.Org push
2529
if: github.ref == 'refs/heads/master'
2630
run: |

0 commit comments

Comments
 (0)