We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc99bd1 commit a2298c1Copy full SHA for a2298c1
1 file changed
.github/workflows/ci.yml
@@ -11,13 +11,17 @@ on:
11
jobs:
12
test:
13
runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ python-version: [3.9, 3.10]
17
18
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-python@v2
19
+ - uses: actions/checkout@v4
20
+
21
+ - uses: actions/setup-python@v4
22
with:
- python-version: ">=3.9,<3.11"
-
23
+ python-version: ${{ matrix.python-version }}
24
25
- name: Install poetry
26
run: |
27
curl -sSL https://install.python-poetry.org | python3 -
0 commit comments