Added capability to track melt-by-ice-sheet-basin. Fixed consistency under different PE layouts for positioning of new footloose bergs. #15
Workflow file for this run
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 |