Skip to content

Commit 5450eb4

Browse files
committed
Tests with Doxygen
1 parent 533064e commit 5450eb4

File tree

2 files changed

+2809
-0
lines changed

2 files changed

+2809
-0
lines changed

.github/workflows/doxygen.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Doxygen
2+
3+
on:
4+
push:
5+
paths:
6+
- "**/modules/**"
7+
- "!**/native/**/*"
8+
branches:
9+
- "**"
10+
- "!main"
11+
pull_request:
12+
paths:
13+
- "**/modules/**"
14+
- "!**/native/**/*"
15+
branches:
16+
- "dev/**"
17+
workflow_dispatch:
18+
19+
concurrency:
20+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
21+
cancel-in-progress: true
22+
23+
24+
jobs:
25+
deploy:
26+
runs-on: ubuntu-latest
27+
permissions:
28+
contents: write
29+
steps:
30+
- uses: DenverCoder1/doxygen-github-pages-action@v2.0.0
31+
with:
32+
github_token: ${{ secrets.GITHUB_TOKEN }}
33+
branch: gh-pages
34+
folder: docs/html
35+
config_file: Doxyfile
36+
doxygen_version: 1.14.0

0 commit comments

Comments
 (0)