From c49a741e3edce63d0918accf7512f2af5e1efb05 Mon Sep 17 00:00:00 2001 From: khumnath <50103558+khumnath@users.noreply.github.com> Date: Sat, 19 Oct 2024 11:46:51 +0900 Subject: [PATCH] Update c-cpp.yml --- .github/workflows/c-cpp.yml | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 6c96c8d..396bdc0 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -7,10 +7,17 @@ jobs: runs-on: ubuntu-latest steps: - - - name: Install Qt - uses: jurplel/install-qt-action@v3 - with: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.11' + + - name: Install Qt + uses: jurplel/install-qt-action@v3 + with: aqtversion: '==3.1.*' version: '6.2.0' host: 'linux' @@ -18,9 +25,10 @@ jobs: arch: 'gcc_64' tools: 'tools_cmake' archives: 'qttools qtsvg qtdeclarative qtbase icu' - - name: Build Project - run: | - mkdir build - cd build - qmake ../nepdate.pro - make + + - name: Build Project + run: | + mkdir build + cd build + qmake ../nepdate.pro + make