ci: Show output of failed tests at the end too (#39643)

Cole Miller created

This makes it a bit easier to read GHA logs of failed CI runs.

Release Notes:

- N/A

Change summary

.github/actions/run_tests/action.yml         | 2 +-
.github/actions/run_tests_windows/action.yml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

.github/actions/run_tests/action.yml 🔗

@@ -20,4 +20,4 @@ runs:
 
     - name: Run tests
       shell: bash -euxo pipefail {0}
-      run: cargo nextest run --workspace --no-fail-fast
+      run: cargo nextest run --workspace --no-fail-fast --failure-output immediate-final

.github/actions/run_tests_windows/action.yml 🔗

@@ -24,4 +24,4 @@ runs:
       shell: powershell
       working-directory: ${{ inputs.working-directory }}
       run: |
-        cargo nextest run --workspace --no-fail-fast
+        cargo nextest run --workspace --no-fail-fast --failure-output immediate-final