Skip to content

Merge pull request #75 from Coding-Bunker/dependabot/github_actions/a… #109

Merge pull request #75 from Coding-Bunker/dependabot/github_actions/a…

Merge pull request #75 from Coding-Bunker/dependabot/github_actions/a… #109

Workflow file for this run

name: Build W10
on: [push, pull_request]
jobs:
Build:
strategy:
matrix:
qt_version: [6.1.2]
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
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)