Bump extern/googletest from 77afe8e
to d83fee1
(#730)
#2477
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 |