diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 9f38f77..755b51d 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -31,14 +31,17 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore - - name: Run tests with code coverage - run: dotnet test --no-build --verbosity normal --results-directory "./TestResults/Coverage/" --collect:"XPlat Code Coverage" + - name: Tests + run: dotnet test --configuration Release --no-build - - name: Upload test results artifact - uses: actions/upload-artifact@v4 - with: - name: test-results - path: '**/TestResults/**' + # - name: Run tests with code coverage + # run: dotnet test --no-build --verbosity normal --results-directory "./TestResults/Coverage/" --collect:"XPlat Code Coverage" + + # - name: Upload test results artifact + # uses: actions/upload-artifact@v4 + # with: + # name: test-results + # path: '**/TestResults/**' - name: Performance Test run: dotnet run --project SharpVectorPerformance --configuration Release