We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 577bdd8 commit 79fe544Copy full SHA for 79fe544
.github/workflows/continuous-integration-workflow.yml
@@ -17,10 +17,14 @@ jobs:
17
run: |
18
docker build --build-arg NUGET_PACKAGE_VERSION=${{ env.VERSION }} --build-arg COMPANIES_HOUSE_API_KEY=${{ secrets.COMPANIES_HOUSE_API_KEY }} -f ./Dockerfile --output ./ .
19
- name: Publish Unit Test Results
20
- uses: EnricoMi/publish-unit-test-result-action@v2
+ uses: dorny/test-reporter@v1
21
if: always()
22
with:
23
- trx_files: TestResults/**/*.trx
+ name: Test Results
24
+ path: TestResults/**/*.trx
25
+ reporter: dotnet-trx
26
+ fail-on-error: true
27
+ fail-on-empty: true
28
- name: NuGet.Org push
29
if: github.ref == 'refs/heads/master'
30
0 commit comments