Skip to content

Commit

Permalink
Added action for Doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
fjrodl committed Nov 5, 2024
1 parent 5cd8c84 commit c3089b6
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Doxyfile → .github/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ OPTIMIZE_OUTPUT_SLICE = NO
#
# Note see also the list of default file extension mappings.

EXTENSION_MAPPING =
EXTENSION_MAPPING = txt=md

# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
# according to the Markdown format, which allows for more readable
Expand Down Expand Up @@ -865,6 +865,8 @@ WARN_LOGFILE =
# Note: If this tag is empty the current directory is searched.

INPUT = ./
INPUT += ./README.md
USE_MDFILE_AS_MAINPAGE = ./README.md

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/doxygen-doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Doxygen Deployment

on:
pull_request:
branches:
- rolling
push:
branches:
- rolling
schedule:
- cron: '0 0 * * 6'

jobs:
doxygen_generation:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Generate Doxygen for cs4home
uses: mattnotmitt/doxygen-action@edge
with:
doxyfile-path: ".github/Doxyfile"

0 comments on commit c3089b6

Please sign in to comment.