Skip to content

Commit

Permalink
Try running the docs with Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Gallaecio committed Feb 7, 2024
1 parent 53b9dfd commit 0e57930
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
tox-job: ["mypy", "linters", "twine", "docs"]
include:
- python-version: '3.12'
toxenv: mypy
- python-version: '3.12'
toxenv: linters
- python-version: '3.12'
toxenv: twine
- python-version: '3.11'
toxenv: docs

steps:
- uses: actions/checkout@v4
Expand All @@ -62,4 +69,4 @@ jobs:
python -m pip install tox
- name: tox
run: |
tox -e ${{ matrix.tox-job }}
tox -e ${{ matrix.toxenv }}

0 comments on commit 0e57930

Please sign in to comment.