2021-02-25 11:35:46 +00:00
|
|
|
name: Docs
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'docs/**'
|
2022-03-07 09:56:31 +00:00
|
|
|
- '.github/workflows/docs.yml'
|
2021-02-25 11:35:46 +00:00
|
|
|
push:
|
|
|
|
branches:
|
2021-03-09 06:27:51 +00:00
|
|
|
- main
|
2021-02-25 11:35:46 +00:00
|
|
|
paths:
|
|
|
|
- 'docs/**'
|
2022-03-07 09:56:31 +00:00
|
|
|
- '.github/workflows/docs.yml'
|
2021-02-25 11:35:46 +00:00
|
|
|
|
2022-03-07 12:17:58 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-08-04 18:00:35 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-02-25 11:35:46 +00:00
|
|
|
jobs:
|
|
|
|
docs:
|
2021-07-29 09:54:14 +00:00
|
|
|
# OS must be the same as on djangoproject.com.
|
2022-03-08 08:29:32 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-02-25 11:35:46 +00:00
|
|
|
name: docs
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 09:56:31 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-02-25 11:35:46 +00:00
|
|
|
- name: Set up Python
|
2022-06-24 05:38:13 +00:00
|
|
|
uses: actions/setup-python@v4
|
2021-02-25 11:35:46 +00:00
|
|
|
with:
|
2022-10-25 03:34:09 +00:00
|
|
|
python-version: '3.11'
|
2022-03-07 09:56:31 +00:00
|
|
|
cache: 'pip'
|
|
|
|
cache-dependency-path: 'docs/requirements.txt'
|
2021-02-25 11:35:46 +00: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
|