We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1454aa9 commit 3a21e54Copy full SHA for 3a21e54
.github/workflows/test.yml
@@ -19,6 +19,13 @@ jobs:
19
python-version: ["3.9", "3.10", "3.11", "3.12"]
20
sphinx-version:
21
["sphinx==6.0", "sphinx==6.2", "sphinx==7.0", "sphinx>=7.3"]
22
+ include:
23
+ - os: Windows
24
+ python-version: "3.12"
25
+ sphinx-version: "sphinx" # version shouldn't really matter here
26
+ defaults:
27
+ run:
28
+ shell: bash -eo pipefail {0}
29
steps:
30
- uses: actions/checkout@v4
31
@@ -59,11 +66,13 @@ jobs:
59
66
run: |
60
67
sudo apt-get update
61
68
sudo apt install texlive texlive-latex-extra latexmk dvipng
69
+ if: runner.os == 'Linux'
62
70
63
71
- name: Build documentation
64
72
65
73
make -C doc html SPHINXOPTS="-nT"
74
make -C doc latexpdf SPHINXOPTS="-nT"
75
76
77
prerelease:
78
runs-on: ${{ matrix.os }}-latest
0 commit comments