From b0a3b10d4a7b09dd59aa85bf1ac6e91f51ac57e4 Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Wed, 3 Jan 2024 10:02:48 +0100 Subject: [PATCH] test --- .github/workflows/ci.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4abf7e6f..be443423 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,23 +8,17 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - qtver: ['5.12.12', '6.5.3'] + qtver: [5.12.12, 6.5.3] steps: - name: Checkout uses: actions/checkout@v4 - - name: Cache Qt - id: cache-qt - uses: actions/cache@v2 - with: - path: ${{ github.workspace }}/Qt/ - key: ${{ runner.os }}-QtCache-${{ runner.qtver }} - - name: Install Qt - uses: jurplel/install-qt-action@v2 + uses: jurplel/install-qt-action@v3 with: version: ${{ runner.qtver }} dir: "${{ github.workspace }}/Qt/" + cache: true - name: Install Linux dependencies if: "contains( matrix.os, 'ubuntu')"