Skip to content

Commit 92c8647

Browse files
committed
add matrix testing for Python 3.9-3.12
1 parent 3fc117c commit 92c8647

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@ on: [push, pull_request]
55
jobs:
66
tests:
77
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version: ["3.9", "3.10", "3.11", "3.12"]
811

912
steps:
1013
- uses: actions/checkout@v4
1114

1215
- name: Install uv and set the python version
1316
uses: astral-sh/setup-uv@v5
1417
with:
15-
python-version: "3.11"
18+
python-version: ${{ matrix.python-version }}
1619
enable-cache: true
1720
cache-dependency-glob: "uv.lock"
1821

0 commit comments

Comments
 (0)