chore(deps): update pre-commit hook adamchainz/django-upgrade to v1.2… #26965
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@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- name: Install apt dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y graphviz | |
- name: Install Python dependencies | |
run: uv sync --no-sources --only-group docs --frozen | |
- name: Sphinx build | |
run: | | |
. .venv/bin/activate | |
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 |