Skip to content

Commit

Permalink
Add Doxygen check
Browse files Browse the repository at this point in the history
  • Loading branch information
sleeepyjack committed Aug 19, 2023
1 parent 1166769 commit 0cbbdf6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,25 @@ concurrency:
cancel-in-progress: true

jobs:
doxygen-check:
name: Doxygen check
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install Doxygen
run: |
sudo apt-get update
sudo apt-get install -y doxygen
- name: Check Doxygen docs
run: |
./ci/pre-commit/doxygen.sh
if [ $? -ne 0 ]; then
echo "Doxygen check failed"
exit 1
fi
shell: bash -euxo pipefail {0}

get-devcontainer-version:
name: Get devcontainer version
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0cbbdf6

Please sign in to comment.