Skip to content

Bump jurplel/install-qt-action from 3.3.0 to 4.0.0 #114

Bump jurplel/install-qt-action from 3.3.0 to 4.0.0

Bump jurplel/install-qt-action from 3.3.0 to 4.0.0 #114

Workflow file for this run

name: Build W10
on: [push, pull_request]
jobs:
Build:
strategy:
matrix:
qt_version: [6.1.2, 6.6.0]
platform: [windows-latest]
arch: [x64, x86]
fail-fast: false
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Installing Qt
uses: jurplel/install-qt-action@v4.0.0
with:
version: ${{ matrix.qt_version }}
arch: ${{ matrix.qtarch }}
cached: 'false'
- name: Build
shell: bash
env:
CC: cl.exe
CXX: cl.exe
run: |
mkdir build
cd build
cmake ..
cmake --build . --parallel $(nproc)