diff options
-rw-r--r-- | .github/workflows/linux.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index a45364d..d0f8555 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -51,3 +51,15 @@ jobs: run: cmake -S . -B build -D BUILD_TESTS=ON - name: Build Vulkan-Headers Tests run: cmake --build build + + test-cmake-minimum: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: lukka/get-cmake@latest + with: + cmakeVersion: 3.10.2 + - name: CMake Version + run: cmake --version + - name: Configure Vulkan-Headers + run: mkdir build/ && cd build/ && cmake ${GITHUB_WORKSPACE} |