From 8b5eb749b6510a5d7ab5caea59db628d80230435 Mon Sep 17 00:00:00 2001 From: Sergey Date: Mon, 11 Mar 2024 21:17:05 -0400 Subject: [PATCH] build.yml: Individual test result folder per OS. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e510dd8..edd3519 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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() }} \ No newline at end of file