Skip to content

add Doxygen documentation site #3

add Doxygen documentation site

add Doxygen documentation site #3

Workflow file for this run

name: cmake --build
on:
push:
branches: "main"
paths-ignore:
- .gitignore
- LICENSE
- README.*
- docs/**
- .github/**
- "!.github/workflows/cmake-build.yml"
pull_request:
paths-ignore:
- .gitignore
- LICENSE
- README.*
- docs/**
- .github/**
- "!.github/workflows/cmake-build.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cmake-build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: jcbhmr/setup-cmake@main
- run: cmake -Bbuild
- run: cmake --build build