Skip to content

Commit 52f2b34

Browse files
committed
CI: run with LaTeX and epub output
1 parent 8446fc5 commit 52f2b34

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/version-matrix.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,21 @@ jobs:
7676
PYTHONWARNINGS: error,default::DeprecationWarning
7777
run: |
7878
$PIP install -r doc/requirements.txt --upgrade-strategy only-if-needed
79-
- name: Run Sphinx
79+
- name: Run Sphinx (HTML)
8080
env:
8181
# There is a weird warning from jupyter_core (https://github.com/jupyter/jupyter_core/issues/398)
8282
PYTHONWARNINGS: error,default::DeprecationWarning
8383
run: |
8484
$SPHINX doc _build -b html
85+
- name: Run Sphinx (LaTeX, but without running LaTeX)
86+
env:
87+
# There is a weird warning from jupyter_core (https://github.com/jupyter/jupyter_core/issues/398)
88+
PYTHONWARNINGS: error,default::DeprecationWarning
89+
run: |
90+
$SPHINX doc _build -b latex
91+
- name: Run Sphinx (epub)
92+
env:
93+
# There is a weird warning from jupyter_core (https://github.com/jupyter/jupyter_core/issues/398)
94+
PYTHONWARNINGS: error,default::DeprecationWarning
95+
run: |
96+
$SPHINX doc _build -b epub

0 commit comments

Comments
 (0)