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 2b173ae commit 53a0856Copy full SHA for 53a0856
.github/workflows/build-pipeline.yml
@@ -40,11 +40,11 @@ jobs:
40
cd '${{ github.workspace }}/MewtocolTests'
41
dotnet test --logger "trx;logfilename=testresults.trx"
42
#Generate a test report
43
- - name: 'Test Report'
+ - name: 'Generate Test Report'
44
uses: dorny/test-reporter@v1
45
if: success() || failure() # run this step even if previous step failed
46
with:
47
- 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
48
path: '${{ github.workspace }}/MewtocolTests/TestResults/testresults.trx' # Path to test results
49
reporter: dotnet-trx # Format of test results
50
0 commit comments