Skip to content

Commit 34f74eb

Browse files
committed
.github/workflows/run_tox.yml
1 parent ebb28ba commit 34f74eb

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/run_tox.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,20 @@ env:
1313
jobs:
1414
testPy37-39:
1515
runs-on: ubuntu-22.04
16+
strategy:
17+
matrix:
18+
python-version: [ '3.7', '3.8', '3.9' ]
19+
name: Python ${{ matrix.python-version }} sample
1620
steps:
1721
- uses: actions/checkout@v6
1822
- uses: actions/setup-python@v6
1923
with:
20-
python-version: |
21-
3.7
22-
3.8
23-
3.9
24-
- name: Install pkg_resources
24+
python-version: ${{ matrix.python-version }}
25+
- name: Install setuptools
2526
continue-on-error: true
2627
run: |
2728
python -m pip install --upgrade pip
28-
python -m pip install pkg_resources
29+
python -m pip install setuptools
2930
3031
- name: Install tox
3132
run: |

0 commit comments

Comments
 (0)