From 73cfd62148fc7a69688e5f20651a9f60736b81c1 Mon Sep 17 00:00:00 2001 From: Trent Houliston Date: Sat, 16 Sep 2023 08:37:05 +1000 Subject: [PATCH] . --- .github/workflows/main.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index d88c34a3b..af028dc64 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -61,7 +61,7 @@ jobs: # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail run: | build/tests/test_nuclear - for f in build/tests/individual/*; do echo "Testing $f"; ./$f -s; done + for f in build/tests/individual/*; do echo "Testing $f"; ./$f; done build-osx: name: MacOS Clang @@ -87,7 +87,7 @@ jobs: # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail run: | build/tests/test_nuclear - for f in build/tests/individual/*; do echo "Testing $f"; ./$f -s; done + for f in build/tests/individual/*; do echo "Testing $f"; ./$f; done build-windows: name: Windows MSVC @@ -115,7 +115,7 @@ jobs: # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail run: | build/tests/Release/test_nuclear.exe - for f in build/tests/individual/Release/*; do echo "Testing $f"; ./$f -s; done + for f in build/tests/individual/Release/*; do echo "Testing $f"; ./$f; done shell: bash check-clang-tidy-linux: