From f5058d0b8a2565148d48a2a5f78abdb48bf842ad Mon Sep 17 00:00:00 2001 From: Felipe Soares <> Date: Sun, 21 Jan 2024 11:26:49 +0000 Subject: [PATCH] fix --- .github/workflows/dotnet.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 2e7e9dc3..20fd0775 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -25,9 +25,10 @@ jobs: - name: Build run: dotnet build --no-restore - name: Test - run: dotnet test --no-build --verbosity normal --logger "trx;LogFileName=results/tests.xml" - - name: Create test summary - uses: test-summary/action@dist + run: dotnet test --no-build --verbosity normal --logger trx --results-directory "TestResults-${{ matrix.dotnet-version }}" + - name: Upload dotnet test results + uses: actions/upload-artifact@v4 with: - paths: results/**/*.xml - if: always() \ No newline at end of file + name: dotnet-results-${{ matrix.dotnet-version }} + path: TestResults-${{ matrix.dotnet-version }} + if: ${{ always() }} \ No newline at end of file