From e39b2de183f26119a5c8ecbe381dbe9ec1b40022 Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 11 Jan 2025 13:53:17 -0500 Subject: [PATCH] ci: just run ctest --output-on-failure, never run make test #2837 --- .github/workflows/macos_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos_test.yml b/.github/workflows/macos_test.yml index 938f945b1..a410c5935 100644 --- a/.github/workflows/macos_test.yml +++ b/.github/workflows/macos_test.yml @@ -46,7 +46,7 @@ jobs: - name: ctest run: | cd build - make test || { ctest --output-on-failure ; false ; } + ctest --output-on-failure - name: make install run: |