Skip to content

Commit 64a9a65

Browse files
committed
updated
1 parent a1faee2 commit 64a9a65

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/python-app.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,16 @@ jobs:
1111

1212
runs-on: ubuntu-latest
1313

14+
strategy:
15+
matrix:
16+
python-version: ["3.10", "3.11", "3.12"]
17+
1418
steps:
1519
- uses: actions/checkout@v2
16-
- name: Set up Python 3.12
20+
- name: Set up Python ${{ matrix.python-version }}
1721
uses: actions/setup-python@v2
1822
with:
19-
python-version: 3.12
23+
python-version: ${{ matrix.python-version }}
2024
- name: Install dependencies
2125
run: |
2226
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)