Update gameci.yml - enable prettyprint of test results

This commit is contained in:
bd_ 2023-10-03 18:40:37 +09:00 committed by GitHub
parent c454bc1ed8
commit 02ea485c08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: