Skip to content

Commit d4b9465

Browse files
Ryanf55Jaeyoung-Lim
authored andcommitted
Add Doxygen
* Add basic Doxyfile * Add CI to build doxygen docs * Add publish Signed-off-by: Ryan Friedman <[email protected]>
1 parent 88d5ea2 commit d4b9465

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.github/workflows/doxygen.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build Test
2+
on:
3+
push:
4+
pull_request:
5+
branches:
6+
- '*'
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
fail-fast: false
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: mattnotmitt/[email protected]
16+
- uses: peaceiris/actions-gh-pages@v3
17+
with:
18+
github_token: ${{ secrets.GITHUB_TOKEN }}
19+
publish_dir: ./html
20+

Doxyfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
PROJECT_NAME=grid_map_geo
2+
RECURSIVE=YES
3+
USE_MDFILE_AS_MAINPAGE=README.md
4+
WARN_IF_UNDOC_ENUM_VAL=YES
5+
WARN_NO_PARAMDOC=YES

0 commit comments

Comments
 (0)