Skip to content

Commit eda48f5

Browse files
committed
.github/workflows/test: Fix gh-action (action versions, python/sphinx versions)
1 parent 850b0eb commit eda48f5

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,22 @@ jobs:
88

99
strategy:
1010
matrix:
11-
sphinx_version: ["", "~=4.0.0", "~=3.0.0"]
12-
python_version: ["3.6", "3.8", '3.x']
13-
exclude:
14-
- {sphinx_version: "~=4.0.0", python_version: '3.x'}
15-
- {sphinx_version: "~=3.0.0", python_version: '3.x'}
11+
sphinx_version: ["", "~=6.0.0", "~=5.0.0"]
12+
python_version: ["3.8", "3.10", '3.x']
13+
#exclude:
14+
- {sphinx_version: "~=6.0.0", python_version: '3.8'}
15+
# - {sphinx_version: "~=4.0.0", python_version: '3.10'}
16+
# - {sphinx_version: "~=3.0.0", python_version: '3.x'}
17+
include:
18+
#- {sphinx_version: "~=3.0.0", python_version: '3.6'}
19+
- {sphinx_version: "~=4.0.0", python_version: '3.8'}
1620

1721
# Steps represent a sequence of tasks that will be executed as part of the job
1822
steps:
1923
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
20-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2125
- name: Install Python
22-
uses: actions/setup-python@v1
26+
uses: actions/setup-python@v4
2327
with:
2428
python-version: ${{ matrix.python_version }}
2529
- name: Install dependencies

0 commit comments

Comments
 (0)