From 55f7196b9481eba64fab9fc70066ccc9ce331a2e Mon Sep 17 00:00:00 2001 From: Felipe Soares <> Date: Sun, 21 Jan 2024 11:30:48 +0000 Subject: [PATCH] fix --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 20fd0775..380dc349 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -26,9 +26,9 @@ jobs: run: dotnet build --no-restore - name: Test 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 + - name: Create test summary + uses: test-summary/action@dist with: name: dotnet-results-${{ matrix.dotnet-version }} - path: TestResults-${{ matrix.dotnet-version }} + paths: TestResults-${{ matrix.dotnet-version }} if: ${{ always() }} \ No newline at end of file