From acbd1636245aa07410d58ea208273b4500381168 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Wed, 9 Apr 2025 20:31:48 -0500 Subject: [PATCH] Tell ctest to ignore not having tests. --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70bf30d..fa55c94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,6 @@ jobs: extra-values: | boost-lib: static_assert scan-dirs: test - have-cmake-tests: false compilers: | gcc >= 4.8 clang >= 3.5 @@ -129,8 +128,10 @@ jobs: - name: CMake Workflow uses: alandefreitas/cpp-actions/cmake-workflow@master + env: + CTEST_NO_TESTS_ACTION: ignore with: - run-tests: ${{ matrix.have-cmake-tests }} + run-tests: true install: true cmake-version: ">=3.31" generator: ${{ matrix.generator }}