build.yml: add doc building test for latex/pdf
This commit is contained in:
parent
ffffccf7a0
commit
670b6ebecc
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
@ -73,12 +73,19 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: stubs
|
name: stubs
|
||||||
path: circuitpython-stubs*
|
path: circuitpython-stubs*
|
||||||
- name: Docs
|
- name: Test Documentation Build (HTML)
|
||||||
run: sphinx-build -E -W -b html -D version=${{ env.CP_VERSION }} -D release=${{ env.CP_VERSION }} . _build/html
|
run: sphinx-build -E -W -b html -D version=${{ env.CP_VERSION }} -D release=${{ env.CP_VERSION }} . _build/html
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: docs
|
name: docs
|
||||||
path: _build/html
|
path: _build/html
|
||||||
|
- name: Test Documentation Build (LaTeX/PDF)
|
||||||
|
run: |
|
||||||
|
make latexpdf
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: docs
|
||||||
|
path: _build/latex
|
||||||
- name: Translations
|
- name: Translations
|
||||||
run: make check-translate
|
run: make check-translate
|
||||||
- name: New boards check
|
- name: New boards check
|
||||||
|
Loading…
x
Reference in New Issue
Block a user