We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebb28ba commit 34f74ebCopy full SHA for 34f74eb
.github/workflows/run_tox.yml
@@ -13,19 +13,20 @@ env:
13
jobs:
14
testPy37-39:
15
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
20
steps:
21
- uses: actions/checkout@v6
22
- uses: actions/setup-python@v6
23
with:
- python-version: |
- 3.7
- 3.8
- 3.9
24
- - name: Install pkg_resources
+ python-version: ${{ matrix.python-version }}
25
+ - name: Install setuptools
26
continue-on-error: true
27
run: |
28
python -m pip install --upgrade pip
- python -m pip install pkg_resources
29
+ python -m pip install setuptools
30
31
- name: Install tox
32
0 commit comments