Skip to content

Commit

Permalink
test report
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Creach committed Jul 3, 2024
1 parent 57a0ba4 commit 6831ad7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/unitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,12 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- run: dotnet test ./katas/katas.sample.test\
- run: dotnet test ./katas/katas.sample.test --logger "trx,LogFileName=katas-sample-test-result.trx"
- name: Test report
uses: dorny/test-reporter@v1
if: always() # run this step even if previous step failed
with:
name: Kata Tests # Name of the check run which will be created
path: "**/katas-sample-test-result.trx" # Path to test results
reporter: dotnet-trx
fail-on-error: true

0 comments on commit 6831ad7

Please sign in to comment.