Per #2751, this work was actually completed already, adding text to m… #3864
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: Documentation | |
on: | |
push: | |
branches: | |
- develop | |
- feature_** | |
- main_** | |
- bugfix_** | |
paths: | |
- docs/** | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
documentation: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade sphinx sphinx-gallery sphinx_rtd_theme | |
python -m pip install python-dateutil requests Pillow | |
python -m pip install -r docs/requirements.txt | |
- name: Build Documentation | |
run: ./.github/jobs/build_documentation.sh | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: METplus_documentation | |
path: artifact/documentation | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: documentation_warnings.log | |
path: artifact/doc_warnings.log | |
if-no-files-found: ignore |