From 3a80bb85879dee08818ccca079e85a0bdfe5d211 Mon Sep 17 00:00:00 2001 From: Seamas McGettrick Date: Wed, 30 Aug 2023 14:00:38 -0500 Subject: [PATCH] Switch back to Dorny and clean up --- .github/workflows/test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 179ad13..db4a60d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,8 +27,10 @@ jobs: - name: Test run: dotnet test --configuration Release --no-build --verbosity normal --logger:"trx;" - name: Publish Test Results - uses: EnricoMi/publish-unit-test-result-action@v2 + uses: dorny/test-reporter@v1 if: always() with: - files: | - "**/*.trx" + name: Test Results + path: "**/*.trx" + reporter: dotnet-trx + fail-on-error: true