Issue 457 sonarqube #270
Workflow file for this run
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: Documentation | |
| on: | |
| push: | |
| paths: | |
| - docs/** | |
| branches: | |
| - develop | |
| - develop-ref | |
| - feature_* | |
| - main_* | |
| - bugfix_* | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| documentation: | |
| name: Build Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade python-dateutil requests sphinx \ | |
| sphinx-gallery Pillow sphinx_rtd_theme pandas xarray | |
| python -m pip install -r docs/requirements.txt | |
| - name: Build docs | |
| run: ./.github/jobs/build_documentation.sh | |
| - uses: actions/upload-artifact@v7 | |
| if: always() | |
| with: | |
| name: documentation | |
| path: artifact/documentation | |
| - uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: documentation_warnings.log | |
| path: artifact/doc_warnings.log | |
| if-no-files-found: ignore |