Merge pull request #4623 from Ombi-app/test-results

added test results into the PR pipeline [skip ci]
pull/4619/head^2
Jamie 2 years ago committed by GitHub
commit 1c232ec3e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -45,7 +45,16 @@ jobs:
- name: Run Unit Tests
run: |
cd src
dotnet test --logger trx --results-directory "TestResults"
dotnet test --logger "trx;LogFileName=test-results.trx" || true
- name: Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: DotNET Tests
path: "**/test-results.trx"
reporter: dotnet-trx
fail-on-error: true
analysis:
runs-on: ubuntu-latest

Loading…
Cancel
Save