summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorsommersoft <sommersoft@gmail.com>2020-08-15 14:29:38 -0500
committersommersoft <sommersoft@gmail.com>2020-08-15 14:29:38 -0500
commit670b6ebecc9b7f685639b686c9ecfdd738e7a6d1 (patch)
tree2a9d21273123d89ebb731d82ba9cb74e092580eb /.github
parentffffccf7a07293870c91ba1bec91c2a99938b5e5 (diff)
build.yml: add doc building test for latex/pdf
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index bf9c1623f..a020c91c0 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -73,12 +73,19 @@ jobs:
with:
name: 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
- uses: actions/upload-artifact@v2
with:
name: docs
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
run: make check-translate
- name: New boards check