We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e18ffb commit fc6bddcCopy full SHA for fc6bddc
.github/workflows/ci.yml
@@ -5,11 +5,14 @@ on:
5
jobs:
6
ci:
7
runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ python-version: [ "3.11", "3.12" ]
11
steps:
12
- uses: actions/checkout@v4
13
- uses: actions/setup-python@v5
14
with:
- python-version: "3.12"
15
+ python-version: ${{ matrix.python-version }}
16
- name: Install deps
17
run: |
18
python -m pip install --upgrade pip
0 commit comments