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 4, 2024
1 parent bd618b5 commit 4f7744c
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 @@ -37,3 +37,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
- name: upload Doxygen artifact
uses: actions/upload-artifact@v4
with:
name: doxygen
path: ./build/doc/doxygen/html
retention-days: 7

0 comments on commit 4f7744c

Please sign in to comment.