Skip to content

Post Build

Post Build #72

Workflow file for this run

name: Post Build
on:
workflow_run:
workflows: ["Build"]
types: [completed]
jobs:
downstream:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev,docs]"
- name: Build docs (gated after Build)
run: mkdocs build --strict