Bump actions/setup-python from 6 to 7 #919
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: Build HTML on macOS | |
| on: [push, pull_request] | |
| env: | |
| PIP: python -m pip | |
| SPHINX: python -m sphinx -W --keep-going --color | |
| jobs: | |
| html-macos: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Clone repo | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install pandoc | |
| run: | | |
| brew install pandoc | |
| - name: Set up Python | |
| uses: actions/setup-python@v7 | |
| with: | |
| python-version: 3 | |
| - name: Double-check Python version | |
| run: | | |
| python --version | |
| - name: Install Python package | |
| run: | | |
| $PIP install --group doc . | |
| - name: Build HTML | |
| run: | | |
| $SPHINX doc/ _build/html/ |