File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,19 @@ jobs:
16
16
# Build docs on a number of Python versions. In the future this can be
17
17
# where tests go.
18
18
tests :
19
- runs-on : ubuntu-latest
19
+ runs-on : ${{ matrix.os }}
20
20
strategy :
21
21
matrix :
22
+ os : [ubuntu-latest]
22
23
python-version : [3.7, 3.8, 3.9, "3.10"]
24
+ # Manually specify one OSX + Windows build to make sure it works there.
23
25
include :
24
26
- python-version : " 3.10"
25
27
dev : true
28
+ - os : macos-latest
29
+ python-version : " 3.9"
30
+ - os : windows-latest
31
+ python-version : " 3.9"
26
32
27
33
steps :
28
34
- uses : actions/checkout@v2
46
52
# Build the docs
47
53
- name : Build docs to store
48
54
run : |
49
- export PATH="$HOME/miniconda/bin:$PATH"
50
55
sphinx-build -b html docs/ docs/_build/html -W --keep-going
51
56
52
57
# Run tests under coverage
@@ -102,7 +107,6 @@ jobs:
102
107
# Build the docs
103
108
- name : Build docs to store
104
109
run : |
105
- export PATH="$HOME/miniconda/bin:$PATH"
106
110
sphinx-build -b html docs/ docs/_build/html -W --keep-going
107
111
108
112
# Serve the docs and wait to be ready
You can’t perform that action at this time.
0 commit comments