Skip to content

Commit

Permalink
ci: even more matrix work
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Oct 13, 2023
1 parent 07d4500 commit 4812d8d
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
sphinx: ["~=7.0"]
myst-parser: [">=2.0"]
# Just check the other platforms once
sphinx: [">=4.0,<=7.*"] # Newest Sphinx (any)
myst-parser: [">=0.18.0,<=2.*"] # Newest MyST Parser (any)
include:
# Just check the other platforms once
- os: windows-latest
python-version: "3.10"
sphinx: "~=7.0"
Expand All @@ -39,11 +39,16 @@ jobs:
python-version: "3.10"
sphinx: "~=7.0"
myst-parser: ">=2.0"
# Oldest dependencies
# Oldest known-compatible dependencies
- os: ubuntu-latest
python-version: "3.8"
sphinx: "~=4.0"
myst-parser: "~=0.18.0"
# Newest known-compatible dependencies
- os: ubuntu-latest
python-version: "3.12"
sphinx: "~=7.0"
myst-parser: "~=2.0.0"

runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit 4812d8d

Please sign in to comment.