Skip to content

Commit 76c64b0

Browse files
committed
Fix python version in GitHub action
1 parent df46e0c commit 76c64b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tox.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ['3.7', '3.8', '3.9', '3.10']
18+
py: ['3.7', '3.8', '3.9', '3.10']
1919

2020
steps:
2121
- uses: actions/checkout@v2
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Python
2525
uses: actions/setup-python@v2
2626
with:
27-
python-version: ${{ matrix.python }}
27+
python-version: ${{ matrix.py }}
2828
- name: Update pip
2929
run: python -m pip install -U pip
3030
- name: Install tox-gh

0 commit comments

Comments
 (0)