Skip to content

Commit c64d727

Browse files
committed
try multiple python version
1 parent b446076 commit c64d727

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/pytests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
jobs:
77
run:
88
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python-version: ["3.11", "3.12", "3.13"]
912
steps:
1013
- name: Checkout code
1114
uses: actions/checkout@v2
@@ -16,7 +19,8 @@ jobs:
1619
- name: Setup Python
1720
uses: actions/setup-python@v5
1821
with:
19-
python-version-file: .python-version
22+
# python-version-file: .python-version
23+
python-version: ${{ matrix.python-version }}
2024
- name: Install dependencies
2125
run: |
2226
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)