Update README with content from brief announcement. (#616) #1921
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: self-hosted | |
timeout-minutes: 10 | |
container: | |
image: "localhost:5000/kamping-ci" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: version | |
run: doxygen --version | |
- name: cmake | |
run: cmake -B build | |
- name: run-doxygen | |
run: cmake --build build/ --target docs |