feat: use PEP 735 for devel deps #2237
Workflow file for this run
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
# Copyright © Michal Čihař <[email protected]> | |
# | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: Documentation | |
on: | |
push: | |
branches-ignore: | |
- deepsource-fix-** | |
- renovate/** | |
- weblate | |
pull_request: | |
schedule: | |
- cron: 30 5 * * * | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
name: Sphinx | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install apt dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y graphviz | |
- name: Install Python dependencies | |
run: uv pip install --system -r docs/requirements.txt | |
- name: Sphinx build | |
run: | | |
echo "::add-matcher::.github/matchers/sphinx.json" | |
./ci/run-docs | |
echo "::remove-matcher owner=sphinx::" | |
- uses: actions/[email protected] | |
with: | |
name: Documentation | |
path: docs/_build/html |