Skip to content

Commit a2298c1

Browse files
committed
change in file ci.yml
1 parent cc99bd1 commit a2298c1

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@ on:
1111
jobs:
1212
test:
1313
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
python-version: [3.9, 3.10]
1417

1518
steps:
16-
- uses: actions/checkout@v2
17-
- uses: actions/setup-python@v2
19+
- uses: actions/checkout@v4
20+
21+
- uses: actions/setup-python@v4
1822
with:
19-
python-version: ">=3.9,<3.11"
20-
23+
python-version: ${{ matrix.python-version }}
24+
2125
- name: Install poetry
2226
run: |
2327
curl -sSL https://install.python-poetry.org | python3 -

0 commit comments

Comments
 (0)