Skip to content

Bump DoozyX/clang-format-lint-action from 0.17 to 0.18 #126

Bump DoozyX/clang-format-lint-action from 0.17 to 0.18

Bump DoozyX/clang-format-lint-action from 0.17 to 0.18 #126

Workflow file for this run

name: Build MacOS
on: [push, pull_request]
jobs:
Build:
strategy:
matrix:
qt_version: [6.1.2, 6.6.0]
platform: [macos-latest]
arch: [x64]
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
run: |
mkdir build
cd build
cmake ..
cmake --build . --parallel $(nproc)