Skip to content

Commit 9fdad04

Browse files
committed
set up right python versions
1 parent a79423a commit 9fdad04

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/verify_constants.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
jobs:
1212
verify-constants:
1313
runs-on: ubuntu-latest
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
python-version: [ "pypy3.9", "pypy3.10", "3.9", "3.10", "3.11" ]
1418

1519
steps:
1620
- name: Checkout code
@@ -33,10 +37,10 @@ jobs:
3337
echo "Changed File name : $line"
3438
done < changed_files.txt
3539
36-
- name: Set up Python
37-
uses: actions/setup-python@v4
40+
- name: Set up Python ${{ matrix.python-version }}
41+
uses: actions/setup-python@v5
3842
with:
39-
python-version: '3.x'
43+
python-version: ${{ matrix.python-version }}
4044

4145
- name: Install dependencies
4246
run: |

0 commit comments

Comments
 (0)