Skip to content

Commit

Permalink
build.yml: Individual test result folder per OS.
Browse files Browse the repository at this point in the history
  • Loading branch information
iSeiryu committed Mar 12, 2024
1 parent 02d6cbf commit 8b5eb74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
run: dotnet build -c Release

- name: Test
run: dotnet test --no-build --logger trx --results-directory "TestResults"
run: dotnet test --no-build --logger trx --results-directory "TestResults-${{ matrix.platform }}"

- name: Upload dotnet test results
uses: actions/upload-artifact@v4
with:
name: dotnet--test-results
path: TestResults
name: dotnet-test-results-${{ matrix.platform }}
path: TestResults-${{ matrix.platform }}
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}

0 comments on commit 8b5eb74

Please sign in to comment.