Skip to content

Commit

Permalink
Update dotnet-desktop.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideWiest authored Nov 4, 2023
1 parent 77a01fe commit aedca2a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,16 @@ jobs:
run: dotnet build --no-restore

- name: Run NUnit Tests
run: dotnet test --no-build --verbosity normal Tests/ > testresults.txt 2>&1
run: dotnet test --no-build --verbosity normal Tests/ > testresults.txt 2> testerrs.txt

- name: Upload Test Results
uses: actions/upload-artifact@v2
with:
name: test-results
path: testresults.txt

- name: Upload Test Errors
uses: actions/upload-artifact@v2
with:
name: test-results
path: testresults.txt

0 comments on commit aedca2a

Please sign in to comment.