Skip to content

Commit

Permalink
.github/workflows/test: Fix gh-action (action versions, python/sphinx…
Browse files Browse the repository at this point in the history
… versions)
  • Loading branch information
rkdarst committed Jan 8, 2024
1 parent 850b0eb commit ac3d2e8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ jobs:

strategy:
matrix:
sphinx_version: ["", "~=4.0.0", "~=3.0.0"]
python_version: ["3.6", "3.8", '3.x']
exclude:
- {sphinx_version: "~=4.0.0", python_version: '3.x'}
- {sphinx_version: "~=3.0.0", python_version: '3.x'}
sphinx_version: ["", "~=6.0.0", "~=3.0.0"]
python_version: ["3.8", "3.10", '3.x']
#exclude:
# - {sphinx_version: "~=4.0.0", python_version: '3.x'}
# - {sphinx_version: "~=3.0.0", python_version: '3.x'}

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
Expand Down

0 comments on commit ac3d2e8

Please sign in to comment.