Marginally speed up CI doc builds by using multiple jobs

This commit is contained in:
Rapptz
2022-08-15 15:01:08 -04:00
parent 288f2d169e
commit 3aa3c36c4f
6 changed files with 7 additions and 3 deletions

View File

@ -48,7 +48,7 @@ jobs:
shell: bash
run: |
cd docs
sphinx-build -b html -D language=${DOCS_LANGUAGE} -a -n -T -W --keep-going . _build/html
sphinx-build -b html -D language=${DOCS_LANGUAGE} -j auto -a -n -T -W --keep-going . _build/html
env:
DOCS_LANGUAGE: ${{ matrix.language }}