Skip to content

Commit

Permalink
Fix broken doxygen action. (#1577)
Browse files Browse the repository at this point in the history
* Fix doxygen action.
* Make the action run on every push.
* Tested that it detects a doxygen warning/error correctly.
  • Loading branch information
crankyoldgit authored Aug 27, 2021
1 parent bdff667 commit f026c5c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,12 @@ name: Documentation

# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
on: [push]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Doxygen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: SteffenSeckler/[email protected]
with:
fail-on-warnings: true
- uses: mattnotmitt/doxygen-action@v1
1 change: 1 addition & 0 deletions Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ GENERATE_LATEX = NO
ENABLE_PREPROCESSING = NO
QUIET = YES
WARN_NO_PARAMDOC = YES
WARN_AS_ERROR = YES

0 comments on commit f026c5c

Please sign in to comment.