Bump extern/doxygen-awesome-css from 9f97817
to 00c7339
#2492
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Doxygen Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
doxygen-check: | |
name: Doxygen Check | |
runs-on: ubuntu-latest | |
container: | |
image: "ghcr.io/kamping-site/kamping-ci:2024.2" | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: 'recursive' | |
- name: version | |
run: doxygen --version | |
- name: cmake | |
run: cmake -B build | |
- name: run-doxygen | |
run: cmake --build build/ --target docs |