diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 49dc186..c1b0b10 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -44,7 +44,7 @@ jobs: run: dotnet build --no-restore --configuration:Release - name: Test Core - if: ${{ github.event_name == 'pull_request' || github.ref == 'refs/heads/main' }} + if: ${{ always() && github.event_name == 'pull_request' || github.ref == 'refs/heads/main' }} run: | dotnet test 'tests\Distributed.Collections.Tests\' ` --no-build ` @@ -53,7 +53,7 @@ jobs: --results-directory ${{ env.ArtifactDirectory }} - name: Test Redis - if: ${{ github.event_name == 'pull_request' || github.ref == 'refs/heads/main' }} + if: ${{ always() && github.event_name == 'pull_request' || github.ref == 'refs/heads/main' }} run: | dotnet test 'tests\Distributed.Collections.Redis.Tests\' ` --no-build `