Update build.yml

This commit is contained in:
Jamie 2021-09-28 18:43:53 +01:00 committed by GitHub
commit e995087971
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,14 +45,14 @@ jobs:
- name: Run Unit Tests
run: |
cd src/Ombi
cd src
dotnet test --logger trx --results-directory "TestResults"
- name: Upload dotnet test results
uses: actions/upload-artifact@v2
with:
name: dotnet-results-*
path: TestResults
path: src/TestResults
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}