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 7de9267Copy full SHA for 7de9267
.github/workflows/tox.yml
@@ -1,15 +1,15 @@
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'
+ python-version: ['3.10']
13
# - '3.11'
14
# - '3.12'
15
# - '3.14'
@@ -30,4 +30,4 @@ jobs:
30
python -m pip install tox tox-gh-actions
31
- name: Test with tox
32
# run only the env that matches the runner Python (e.g. 3.10 -> py310)
33
- run: tox -e ${{ 'py' + matrix.python-version.replace('.','') }}
+ run: tox -e ${{ format('py{0}', matrix.python-version.replace('.','')) }}
0 commit comments