-
-
Notifications
You must be signed in to change notification settings - Fork 1k
78 lines (71 loc) · 1.82 KB
/
docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# 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:
list-languages:
runs-on: ubuntu-24.04
outputs:
languages: ${{ steps.list.outputs.languages }}
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- run: uv run --no-project scripts/list-documentation-languages.py >>"$GITHUB_OUTPUT"
id: list
translations:
runs-on: ubuntu-24.04
needs:
- list-languages
name: Sphinx
strategy:
fail-fast: false
matrix:
language: ${{ fromJson(needs.list-languages.outputs.languages) }}
env:
READTHEDOCS_LANGUAGE: ${{ matrix.language }}
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- 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 ${{ matrix.language }}
path: docs/_build/html
build:
runs-on: ubuntu-24.04
name: Sphinx
needs:
- translations
steps:
# This is dependency only job to collect all test results
- run: echo