From 5b16ebd903980297370e928d427466f5d683fb5b Mon Sep 17 00:00:00 2001 From: Herzenschein Date: Fri, 10 Nov 2023 00:20:34 -0300 Subject: [PATCH] Create install-qt6.yml --- .github/workflows/install-qt6.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/install-qt6.yml diff --git a/.github/workflows/install-qt6.yml b/.github/workflows/install-qt6.yml new file mode 100644 index 0000000..e8bbbd6 --- /dev/null +++ b/.github/workflows/install-qt6.yml @@ -0,0 +1,18 @@ +name: Install Qt6 + +on: + workflow_call: + +jobs: + install-qt6: + runs-on: ubuntu-latest + steps: + - name: Install Qt + uses: jurplel/install-qt-action@v3 + with: + version: '6.6' + host: 'linux' + target: 'desktop' + dir: '${{ github.workspace }}/example/' + install-deps: 'true' + cache: 'true'