Skip to content

Commit

Permalink
github-actions - add doxygen check
Browse files Browse the repository at this point in the history
  • Loading branch information
SiskaPavel committed Oct 9, 2024
1 parent 81baeee commit 54e429a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,24 @@ jobs:

cppcheck:
uses: ./.github/workflows/cppcheck.yml

doxygen:
runs-on: ubuntu-latest
container: oraclelinux:9
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Install doxygen
run: |
dnf config-manager --set-enabled ol9_codeready_builder
dnf install -y doxygen
- name: make doxygen
run: make doxygen CMAKE_ARGS="-DDOXYGEN_WARN_AS_ERROR=YES"
- name: upload Doxygen artifact
uses: actions/upload-artifact@v4
with:
name: doxygen
path: ./build/doc/doxygen/html
retention-days: 7

0 comments on commit 54e429a

Please sign in to comment.