We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffffccf commit 670b6ebCopy full SHA for 670b6eb
1 file changed
.github/workflows/build.yml
@@ -73,12 +73,19 @@ jobs:
73
with:
74
name: stubs
75
path: circuitpython-stubs*
76
- - name: Docs
+ - name: Test Documentation Build (HTML)
77
run: sphinx-build -E -W -b html -D version=${{ env.CP_VERSION }} -D release=${{ env.CP_VERSION }} . _build/html
78
- uses: actions/upload-artifact@v2
79
80
name: docs
81
path: _build/html
82
+ - name: Test Documentation Build (LaTeX/PDF)
83
+ run: |
84
+ make latexpdf
85
+ - uses: actions/upload-artifact@v2
86
+ with:
87
+ name: docs
88
+ path: _build/latex
89
- name: Translations
90
run: make check-translate
91
- name: New boards check
0 commit comments