DM-39842: Add new Task exceptions and error annotation #692
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: docs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build_sphinx_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# Need to clone everything to determine version from git. | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: "pip" | |
cache-dependency-path: "setup.cfg" | |
- name: Install graphviz | |
run: sudo apt-get install graphviz | |
- name: Set the VIRTUAL_ENV variable for uv to work | |
run: | | |
echo "VIRTUAL_ENV=${Python_ROOT_DIR}" >> $GITHUB_ENV | |
- name: Update pip/wheel infrastructure and install uv | |
run: | | |
python -m pip install --upgrade pip | |
pip install uv | |
uv pip install wheel | |
- name: Install documenteer | |
run: uv pip install 'documenteer[pipelines]==0.8.2' | |
- name: Install dependencies | |
run: | | |
uv pip install -r requirements.txt | |
- name: Build and install | |
run: uv pip install --no-deps -v -e . | |
- name: Build documentation | |
working-directory: ./doc | |
run: package-docs build -W |