Add --output-on-failure to ctest CI
diff --git a/.github/workflows/ci-disable-gtest.yml b/.github/workflows/ci-disable-gtest.yml
index f7d5406..26b3663 100644
--- a/.github/workflows/ci-disable-gtest.yml
+++ b/.github/workflows/ci-disable-gtest.yml
@@ -85,4 +85,4 @@
       run: ninja
     - name: Run AVIF Tests
       working-directory: ./build
-      run: ctest -j $(getconf _NPROCESSORS_ONLN)
+      run: ctest -j $(getconf _NPROCESSORS_ONLN) --output-on-failure
diff --git a/.github/workflows/ci-unix-shared-installed.yml b/.github/workflows/ci-unix-shared-installed.yml
index 20e5da7..5126dbe 100644
--- a/.github/workflows/ci-unix-shared-installed.yml
+++ b/.github/workflows/ci-unix-shared-installed.yml
@@ -64,4 +64,4 @@
       run: ninja
     - name: Run AVIF Tests
       working-directory: ./build
-      run: ctest -j $(getconf _NPROCESSORS_ONLN)
+      run: ctest -j $(getconf _NPROCESSORS_ONLN) --output-on-failure
diff --git a/.github/workflows/ci-unix-shared-local.yml b/.github/workflows/ci-unix-shared-local.yml
index 5d302f5..974d238 100644
--- a/.github/workflows/ci-unix-shared-local.yml
+++ b/.github/workflows/ci-unix-shared-local.yml
@@ -86,4 +86,4 @@
       run: ninja
     - name: Run AVIF Tests
       working-directory: ./build
-      run: ctest -j $(getconf _NPROCESSORS_ONLN)
+      run: ctest -j $(getconf _NPROCESSORS_ONLN) --output-on-failure
diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml
index 8b62c2b..7cafed4 100644
--- a/.github/workflows/ci-windows.yml
+++ b/.github/workflows/ci-windows.yml
@@ -104,4 +104,4 @@
       run: ninja
     - name: Run AVIF Tests
       working-directory: ./build
-      run: ctest -j $Env:NUMBER_OF_PROCESSORS
+      run: ctest -j $Env:NUMBER_OF_PROCESSORS --output-on-failure
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index afc772b..030f71a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -89,4 +89,4 @@
       run: ninja
     - name: Run AVIF Tests
       working-directory: ./build
-      run: ctest -j $(getconf _NPROCESSORS_ONLN)
+      run: ctest -j $(getconf _NPROCESSORS_ONLN) --output-on-failure