Skip to content

Merge pull request #87 from Coding-Bunker/dependabot/github_actions/j… #125

Merge pull request #87 from Coding-Bunker/dependabot/github_actions/j…

Merge pull request #87 from Coding-Bunker/dependabot/github_actions/j… #125

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/[email protected]
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)