Change test result step name

This commit is contained in:
Felix Weiss
2023-06-13 22:58:50 +02:00
parent 2b173aeb95
commit 53a0856634

View File

@@ -40,11 +40,11 @@ jobs:
cd '${{ github.workspace }}/MewtocolTests' cd '${{ github.workspace }}/MewtocolTests'
dotnet test --logger "trx;logfilename=testresults.trx" dotnet test --logger "trx;logfilename=testresults.trx"
#Generate a test report #Generate a test report
- name: 'Test Report' - name: 'Generate Test Report'
uses: dorny/test-reporter@v1 uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed if: success() || failure() # run this step even if previous step failed
with: with:
name: XUnit Tests # Name of the check run which will be created name: Unit Test Report # Name of the check run which will be created
path: '${{ github.workspace }}/MewtocolTests/TestResults/testresults.trx' # Path to test results path: '${{ github.workspace }}/MewtocolTests/TestResults/testresults.trx' # Path to test results
reporter: dotnet-trx # Format of test results reporter: dotnet-trx # Format of test results