Skip to content

Commit

Permalink
CI: run with LaTeX and epub output
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed Sep 28, 2024
1 parent 8446fc5 commit 52f2b34
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/version-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,21 @@ jobs:
PYTHONWARNINGS: error,default::DeprecationWarning
run: |
$PIP install -r doc/requirements.txt --upgrade-strategy only-if-needed
- name: Run Sphinx
- name: Run Sphinx (HTML)
env:
# There is a weird warning from jupyter_core (https://github.com/jupyter/jupyter_core/issues/398)
PYTHONWARNINGS: error,default::DeprecationWarning
run: |
$SPHINX doc _build -b html
- name: Run Sphinx (LaTeX, but without running LaTeX)
env:
# There is a weird warning from jupyter_core (https://github.com/jupyter/jupyter_core/issues/398)
PYTHONWARNINGS: error,default::DeprecationWarning
run: |
$SPHINX doc _build -b latex
- name: Run Sphinx (epub)
env:
# There is a weird warning from jupyter_core (https://github.com/jupyter/jupyter_core/issues/398)
PYTHONWARNINGS: error,default::DeprecationWarning
run: |
$SPHINX doc _build -b epub

0 comments on commit 52f2b34

Please sign in to comment.