GRIDEDIT-1491 Added api function to retrieve node, edge and face-node data only #2558
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: DoxygenCheck | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
check: | |
runs-on: ubuntu-20.04 | |
name: Doxygen Check | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: Install doxygen | |
run: sudo apt-get install doxygen | |
- name: Check doxygen | |
run: | | |
# Set error mode. Makes bash bail on first non-zero exit code | |
set -e | |
python3 scripts/doxygen_ci.py --fail-with-warnings |