2021-02-25 19:35:46 +08:00
|
|
|
name: Docs
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'docs/**'
|
2022-03-07 17:56:31 +08:00
|
|
|
- '.github/workflows/docs.yml'
|
2021-02-25 19:35:46 +08:00
|
|
|
push:
|
|
|
|
branches:
|
2021-03-09 14:27:51 +08:00
|
|
|
- main
|
2021-02-25 19:35:46 +08:00
|
|
|
paths:
|
|
|
|
- 'docs/**'
|
2022-03-07 17:56:31 +08:00
|
|
|
- '.github/workflows/docs.yml'
|
2021-02-25 19:35:46 +08:00
|
|
|
|
2022-03-07 20:17:58 +08:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-08-05 02:00:35 +08:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-02-25 19:35:46 +08:00
|
|
|
jobs:
|
|
|
|
docs:
|
2021-07-29 17:54:14 +08:00
|
|
|
# OS must be the same as on djangoproject.com.
|
2022-03-08 16:29:32 +08:00
|
|
|
runs-on: ubuntu-20.04
|
2021-02-25 19:35:46 +08:00
|
|
|
name: docs
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-05 16:52:17 +08:00
|
|
|
uses: actions/checkout@v4
|
2021-02-25 19:35:46 +08:00
|
|
|
- name: Set up Python
|
2024-01-26 20:41:52 +08:00
|
|
|
uses: actions/setup-python@v5
|
2021-02-25 19:35:46 +08:00
|
|
|
with:
|
2024-10-08 14:10:06 +08:00
|
|
|
python-version: '3.13'
|
2022-03-07 17:56:31 +08:00
|
|
|
cache: 'pip'
|
|
|
|
cache-dependency-path: 'docs/requirements.txt'
|
2021-02-25 19:35:46 +08:00
|
|
|
- run: python -m pip install -r docs/requirements.txt
|
|
|
|
- name: Build docs
|
|
|
|
run: |
|
|
|
|
cd docs
|
|
|
|
sphinx-build -b spelling -n -q -W --keep-going -d _build/doctrees -D language=en_US -j auto . _build/spelling
|
2023-02-28 20:14:51 +08:00
|
|
|
|
|
|
|
blacken-docs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: blacken-docs
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-05 16:52:17 +08:00
|
|
|
uses: actions/checkout@v4
|
2023-02-28 20:14:51 +08:00
|
|
|
- name: Set up Python
|
2024-01-26 20:41:52 +08:00
|
|
|
uses: actions/setup-python@v5
|
2023-02-28 20:14:51 +08:00
|
|
|
with:
|
2024-10-08 14:10:06 +08:00
|
|
|
python-version: '3.13'
|
2023-02-28 20:14:51 +08:00
|
|
|
- run: python -m pip install blacken-docs
|
|
|
|
- name: Build docs
|
|
|
|
run: |
|
|
|
|
cd docs
|
|
|
|
make black
|
|
|
|
RESULT=`cat _build/black/output.txt`
|
|
|
|
if [ "$RESULT" -gt 0 ]; then
|
|
|
|
echo "💥 📢 Code blocks in documentation must be reformatted with blacken-docs 📢 💥"
|
|
|
|
fi;
|
|
|
|
exit $RESULT
|