diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 400a9702..4f422fd3 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -10,12 +10,22 @@ on: - '**/*.yml' pull_request: branches: [ "master" ] + workflow_dispatch: env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) BUILD_TYPE: Release - CC: gcc-13 - CXX: g++-13 + +strategy: + matrix: + include: + - cpp_compiler: g++-latest + c_compiler: gcc-latest + - cpp_compiler: clang++-latest + c_compiler: clang-latest + + #CC: gcc-latest + #CXX: g++-latest jobs: linux: