Bump autograd from 1.8.0 to 1.9.1 #80
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
| name: Documentation examples | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: | |
| - "**" | |
| workflow_dispatch: | |
| jobs: | |
| doc-examples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v7 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: Install package for documentation examples | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install poetry | |
| poetry env use python | |
| poetry install --with dev --extras "healpy_support" | |
| - name: Run README Python examples | |
| run: poetry run python scripts/run_doc_examples.py README.md --fail-fast | |
| env: | |
| PYTHONPATH: ${{ github.workspace }}/src | |
| - name: Generate compatibility dashboard preview | |
| run: poetry run python scripts/generate_compatibility_dashboard.py --output compatibility-dashboard.md | |
| env: | |
| PYTHONPATH: ${{ github.workspace }}/src | |
| - name: Upload dashboard preview | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: compatibility-dashboard-preview | |
| path: compatibility-dashboard.md |