From f57d042b4135e140422e4429f3175cab8c3ace73 Mon Sep 17 00:00:00 2001 From: Manuel Schneider Date: Tue, 15 Aug 2023 13:34:57 +0200 Subject: [PATCH] update --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd0315250..3031c0b9a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,14 +21,17 @@ jobs: steps: - name: Checkout source uses: actions/checkout@v3 - - name: Install Qt uses: jurplel/install-qt-action@v3 with: cache: true + - name: Get latest CMake and ninja + uses: lukka/get-cmake@latest + - name: Run CMake + run: cmake -S . -B build + - name: Build + run: cmake --build build - - name: Configure & Build - uses: lukka/run-cmake@v10