From 7a301782e8f1e8e87f46b3fb088ad6cf2b073e83 Mon Sep 17 00:00:00 2001 From: R Date: Sun, 6 Aug 2023 23:55:20 +0100 Subject: [PATCH] Created github action to install qt --- .github/workflows/c-cpp.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..126aa10 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,30 @@ +name: Qt C++ + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: windows + + steps: + - name: Qt + uses: jurplel/install-qt-action@v3 + with: + version: '5.15.2' + host: 'windows' + target: 'desktop' + arch: 'win64msvc201964' + dir: '${{ github.workspace }}/Remini/' + install-deps: 'true' + modules: 'widgets' + cache: 'false' + cache-key-prefix: 'install-qt-action' + setup-python: 'false' + tools: 'toolsifw toolsqtcreator,qt.tools.qtcreator' + set-env: 'true' + tools-only: 'false'