Clean refactor, enable UK+US macro+household analysis outputs #14
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
| # Workflow that runs on code changes to a pull request. | |
| name: Docs changes | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - docs/** | |
| - .github/** | |
| workflow_dispatch: | |
| jobs: | |
| Test: | |
| runs-on: ubuntu-latest | |
| name: Test documentation builds | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Install package | |
| run: uv pip install -e .[dev] --system | |
| - name: Install policyengine | |
| run: uv pip install policyengine --system | |
| - name: Install JB | |
| run: uv pip install "jupyter-book>=2.0.0a0" --system | |
| - name: Test documentation builds | |
| run: cd docs && jupyter book build |