diff --git a/.github/workflows/cmake-multi-platform-val.yml b/.github/workflows/cmake-multi-platform-val.yml index 5bdc63b..61605fb 100644 --- a/.github/workflows/cmake-multi-platform-val.yml +++ b/.github/workflows/cmake-multi-platform-val.yml @@ -1,6 +1,15 @@ name: Multiplatform CMake Build, CTest, Valgrind Profiling on: + push: + branches: + - main + pull_request: + branches: + - main + paths-ignore: + - 'README.md' + workflow_dispatch: jobs: @@ -95,4 +104,4 @@ jobs: - \ No newline at end of file + diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ef16aa..76d9570 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,9 @@ cmake_minimum_required(VERSION 3.28) # Needed to reduce version for compatibilit project(prime-headers) set(CMAKE_C_STANDARD 11) - set(CMAKE_C_STANDARD_REQUIRED ON) +set(CMAKE_BUILD_TYPE Debug) +##set(CMAKE_BUILD_TYPE Release) # deliberately not including these subdirectories by glob regex as precaution