Skip to content

Commit

Permalink
Try running doxygen on src, only to check for existing documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
tanaya-mankad committed Oct 25, 2023
1 parent 73c5c9c commit 91d6c12
Show file tree
Hide file tree
Showing 3 changed files with 2,785 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ IndentPPDirectives: None
IndentRequiresClause: true
IndentWidth: 4
IndentWrappedFunctionNames: false
InsertBraces: false
InsertBraces: true
InsertNewlineAtEOF: true
InsertTrailingCommas: None
IntegerLiteralSeparator:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/doxygen-completeness-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Doxygen Consistency Check
on: [push, pull_request]
jobs:
doxygen-completeness-check:
name: Doxygen completeness check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run doxygen for C++ programs.
uses: mattnotmitt/doxygen-action@v1.9.5
with:
working-directory: 'src'
doxyfile-path: 'doxygen.cfg'
Loading

0 comments on commit 91d6c12

Please sign in to comment.