We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbeb4fb commit c39250aCopy full SHA for c39250a
1 file changed
.github/workflows/on-push.yml
@@ -31,6 +31,11 @@ jobs:
31
unit-tests:
32
name: unit-tests
33
runs-on: ubuntu-latest
34
+ strategy:
35
+ matrix:
36
+ python-version:
37
+ - "3.14"
38
+
39
steps:
40
- uses: actions/checkout@v6
41
- name: Install uv and set the python version
@@ -51,7 +56,7 @@ jobs:
51
56
52
57
uses: astral-sh/setup-uv@v7
53
58
with:
54
- python-version: "3.14"
59
+ python-version: ${{ matrix.python-version }}
55
60
- name: Run code quality checks
61
run: |
62
make type-check
0 commit comments