Skip to content

chore: bump actions/checkout from 5.0.0 to 6.0.1 (#247) #320

chore: bump actions/checkout from 5.0.0 to 6.0.1 (#247)

chore: bump actions/checkout from 5.0.0 to 6.0.1 (#247) #320

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
build-project:
name: Build Project
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, windows-2022]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Configure Project
uses: threeal/[email protected]
with:
run-build: false
- name: Build Project
run: cmake --build build --config Release
- name: Install Project
run: cmake --install build --prefix install
build-examples:
name: Build Examples
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, windows-2022]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Configure Project
uses: threeal/[email protected]
with:
options: BUILD_EXAMPLES=ON
run-build: false
- name: Build Examples
run: cmake --build build --target examples
build-docs:
name: Build Documentation
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install Doxygen
run: sudo apt-get install -y doxygen
- name: Configure Project
uses: threeal/[email protected]
with:
options: BUILD_DOCS=ON
run-build: false
- name: Build Documentation
run: cmake --build build --target docs