add missing commit for gcc 14 #88
This file contains hidden or 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: Docs | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@1.0.0 | |
| - name: Requirements | |
| run: brew install doxygen | |
| && pip3 install -r docsDoxySphinx/requirements.txt | |
| - name: Build docs | |
| run: cd docsDoxySphinx | |
| && make html |