From 61f6cbec5f911e15d2caec483d99c6682e6c6052 Mon Sep 17 00:00:00 2001 From: Alistair Adcroft Date: Tue, 12 Jan 2021 17:42:59 -0500 Subject: [PATCH] Add GH action to verify documentation --- .github/workflows/documentation-and-style.yml | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/documentation-and-style.yml diff --git a/.github/workflows/documentation-and-style.yml b/.github/workflows/documentation-and-style.yml new file mode 100644 index 0000000..10a6250 --- /dev/null +++ b/.github/workflows/documentation-and-style.yml @@ -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