Skip to content

Commit aeb6125

Browse files
committed
Fix passing python version to updated tox
1 parent c06ecdd commit aeb6125

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@ jobs:
2121
- "3.11"
2222
- "3.12"
2323
- "3.13"
24+
include:
25+
- python: "3.9"
26+
tox-env: "py39"
27+
- python: "3.10"
28+
tox-env: "py310"
29+
- python: "3.11"
30+
tox-env: "py311"
31+
- python: "3.12"
32+
tox-env: "py312"
33+
- python: "3.13"
34+
tox-env: "py313"
2435
steps:
2536
- uses: actions/checkout@v4
2637
- name: Setup python
@@ -30,7 +41,7 @@ jobs:
3041
- name: Install tox
3142
run: pip install tox
3243
- name: Run tests
33-
run: tox -e py${{ matrix.python }}
44+
run: tox -e ${{ matrix.tox-env }}
3445
- name: Run linters
3546
run: tox -e pre-commit
3647
- name: Run type checking

0 commit comments

Comments
 (0)