From 02ea485c0856c56e4a6bd64761ef4dede55a48bd Mon Sep 17 00:00:00 2001 From: bd_ Date: Tue, 3 Oct 2023 18:40:37 +0900 Subject: [PATCH] Update gameci.yml - enable prettyprint of test results --- .github/workflows/gameci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gameci.yml b/.github/workflows/gameci.yml index 74dee566..91d96760 100644 --- a/.github/workflows/gameci.yml +++ b/.github/workflows/gameci.yml @@ -68,6 +68,14 @@ jobs: coverageOptions: generateAdditionalMetrics;generateHtmlReport;generateBadgeReport;assemblyFilters:+nadena.dev.* customParameters: -nographics -assemblyNames Tests + - name: Test Report + uses: dorny/test-reporter@v1 + if: always() # run this step even if previous step failed + with: + name: NUnit Tests # Name of the check run which will be created + path: ${{ steps.gameci.outputs.artifactsPath }}/*.xml # Path to test results + reporter: dotnet-trx # Format of test results + - uses: actions/upload-artifact@v3 if: always() with: @@ -77,4 +85,4 @@ jobs: if: always() with: name: Coverage results - path: ${{ steps.gameci.outputs.coveragePath }} \ No newline at end of file + path: ${{ steps.gameci.outputs.coveragePath }}