Skip to content

Commit 3a21e54

Browse files
authored
BUG: Fix bug with validation encoding (#550)
* BUG: Fix bug with validation encoding * FIX: Bashy * FIX: No doc build on Windows * FIX: Shel * FIX: Zero * FIX: User
1 parent 1454aa9 commit 3a21e54

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ jobs:
1919
python-version: ["3.9", "3.10", "3.11", "3.12"]
2020
sphinx-version:
2121
["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}
2229
steps:
2330
- uses: actions/checkout@v4
2431

@@ -59,11 +66,13 @@ jobs:
5966
run: |
6067
sudo apt-get update
6168
sudo apt install texlive texlive-latex-extra latexmk dvipng
69+
if: runner.os == 'Linux'
6270

6371
- name: Build documentation
6472
run: |
6573
make -C doc html SPHINXOPTS="-nT"
6674
make -C doc latexpdf SPHINXOPTS="-nT"
75+
if: runner.os == 'Linux'
6776

6877
prerelease:
6978
runs-on: ${{ matrix.os }}-latest

0 commit comments

Comments
 (0)