Skip to content

Commit fc6bddc

Browse files
committed
ci: add Python 3.11/3.12 matrix (ruff+pytest)
1 parent 4e18ffb commit fc6bddc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@ on:
55
jobs:
66
ci:
77
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version: [ "3.11", "3.12" ]
811
steps:
912
- uses: actions/checkout@v4
1013
- uses: actions/setup-python@v5
1114
with:
12-
python-version: "3.12"
15+
python-version: ${{ matrix.python-version }}
1316
- name: Install deps
1417
run: |
1518
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)