Skip to content

Commit 4bd3c2f

Browse files
authored
Merge pull request #5645 from NlightNFotis/doxygen-github-action
Introduce a doxygen-checking github action
2 parents 8412eef + 522f51e commit 4bd3c2f

File tree

3 files changed

+114
-62
lines changed

3 files changed

+114
-62
lines changed

.github/workflows/doxygen-check.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: doxygen-check
2+
on:
3+
pull_request:
4+
branches: [ develop ]
5+
6+
jobs:
7+
check-doxygen:
8+
runs-on: ubuntu-20.04
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Fetch dependencies
12+
env:
13+
# This is needed in addition to -yq to prevent apt-get from asking for
14+
# user input
15+
DEBIAN_FRONTEND: noninteractive
16+
run: |
17+
sudo apt-get install -yq doxygen graphviz
18+
- name: Run Doxygen
19+
run: ./scripts/run_doxygen.sh

0 commit comments

Comments
 (0)