Skip to content

Commit

Permalink
Add GH action to verify documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
adcroft committed Jan 12, 2021
1 parent a21d3d3 commit 61f6cbe
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/documentation-and-style.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Doxygen completeness

on: [push, pull_request]

jobs:
doxygen:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Build doxygen HTML
run: |
cd docs
doxygen
- name: Report doxygen errors
run: |
cat docs/doxygen.log
test ! -s docs/doxygen.log

0 comments on commit 61f6cbe

Please sign in to comment.