Bump pip from 24.3.1 to 25.0.1 in /.github/workflows #198
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: Check documentation | |
on: [push, pull_request] | |
jobs: | |
docs: | |
name: Build documentation & check links | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
- name: Create uv environment | |
run: uv venv | |
- name: Install dependencies | |
run: | | |
uv pip install --constraint=.github/workflows/constraints.txt pip | |
uv pip install --constraint=.github/workflows/constraints.txt nox | |
- name: Build documentation | |
run: uv run nox --force-color --session=docs | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: docs | |
path: docs/_build | |
- name: Check links | |
run: uv run nox --force-color --session=linkcheck |