Merge branch 'gfdl-to-main-2024-05-16' #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Doxygen completeness | |
on: [push, pull_request] | |
jobs: | |
doxygen: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install packages used when generating documentation | |
run: | | |
sudo apt-get update | |
sudo apt-get install doxygen graphviz | |
- name: Build doxygen HTML | |
run: | | |
cd docs | |
doxygen | |
- name: Report doxygen errors | |
run: | | |
cat docs/doxygen.log | |
test ! -s docs/doxygen.log |