From 53a0856634cfb8c0ed197a77f9714e1b2b6a50de Mon Sep 17 00:00:00 2001 From: Felix Weiss Date: Tue, 13 Jun 2023 22:58:50 +0200 Subject: [PATCH] Change test result step name --- .github/workflows/build-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-pipeline.yml b/.github/workflows/build-pipeline.yml index 33b7bfb..5e7f0e3 100644 --- a/.github/workflows/build-pipeline.yml +++ b/.github/workflows/build-pipeline.yml @@ -40,11 +40,11 @@ jobs: cd '${{ github.workspace }}/MewtocolTests' dotnet test --logger "trx;logfilename=testresults.trx" #Generate a test report - - name: 'Test Report' + - name: 'Generate Test Report' uses: dorny/test-reporter@v1 if: success() || failure() # run this step even if previous step failed 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 reporter: dotnet-trx # Format of test results