Skip to content

Commit a654850

Browse files
authored
GitHub Actions: Add Python 3.12 to the testing
1 parent 0f39e01 commit a654850

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ jobs:
2020
- '3.9'
2121
- '3.10'
2222
- '3.11'
23+
- '3.12'
2324

2425
steps:
2526
- uses: actions/checkout@v4
2627

27-
- uses: actions/setup-python@v4
28+
- uses: actions/setup-python@v5
2829
with:
2930
python-version: ${{ matrix.python-version }}
3031
cache: 'pip'
@@ -49,7 +50,7 @@ jobs:
4950
run: tox --py current
5051

5152
- name: Run extra tox targets
52-
if: ${{ matrix.python-version == '3.9' }}
53+
if: ${{ matrix.python-version == '3.x' }}
5354
run: |
5455
tox -e base,dist,docs
5556
@@ -61,11 +62,11 @@ jobs:
6162
name: Test documentation links
6263
runs-on: ubuntu-22.04
6364
steps:
64-
- uses: actions/checkout@v3
65+
- uses: actions/checkout@v4
6566

66-
- uses: actions/setup-python@v4
67+
- uses: actions/setup-python@v5
6768
with:
68-
python-version: '3.9'
69+
python-version: '3.x'
6970

7071
- name: Install dependencies
7172
run: pip install -r requirements/requirements-documentation.txt

0 commit comments

Comments
 (0)