We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1360218 commit ff33c13Copy full SHA for ff33c13
.github/workflows/tox.yml
@@ -1,18 +1,21 @@
1
name: Tox
2
3
on:
4
+ - push
5
- pull_request
6
7
jobs:
8
build:
9
runs-on: ubuntu-latest
10
strategy:
11
matrix:
- python-version:
12
- - '3.10'
13
- # - '3.11'
14
- # - '3.12'
15
- # - '3.14'
+ include:
+ - python-version: '3.10'
+ tox-env: 'py310'
+ # - python-version: '3.11'
16
+ # tox-env: 'py311'
17
+ # - python-version: '3.12'
18
+ # tox-env: 'py312'
19
20
steps:
21
- uses: actions/checkout@v5
@@ -30,4 +33,4 @@ jobs:
30
33
python -m pip install tox tox-gh-actions
31
34
- name: Test with tox
32
35
# run only the env that matches the runner Python (e.g. 3.10 -> py310)
- run: tox -e ${{ 'py' + matrix.python-version.replace('.','') }}
36
+ run: tox -e ${{ matrix.tox-env }}
0 commit comments