DM-22802: Changes requested by the DRAGONS team #200
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: docs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build_sphinx_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Need to clone everything to determine version from git. | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- name: Install graphviz | |
run: sudo apt-get install graphviz | |
- name: Update pip/wheel infrastructure | |
run: | | |
python -m pip install --upgrade pip | |
pip install wheel | |
- name: Install documenteer | |
run: pip install 'documenteer[pipelines]>=0.8' | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Build and install | |
run: pip install -v --no-deps . | |
- name: Build documentation | |
working-directory: ./doc | |
run: package-docs build -n -W |