We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aa97da commit 32428bdCopy full SHA for 32428bd
β.github/workflows/main.ymlβ
@@ -10,13 +10,18 @@ on:
10
11
jobs:
12
ci:
13
+ strategy:
14
+ matrix:
15
+ python-version: [3.10, 3.14]
16
runs-on: ubuntu-latest
17
steps:
18
- name: Checkout sources
- uses: actions/checkout@v4
19
+ uses: actions/checkout@v5
20
21
- name: Set up uv
- uses: astral-sh/setup-uv@v5
22
+ uses: astral-sh/setup-uv@v7
23
+ with:
24
+ python-version: ${{ matrix.python-version }}
25
26
- name: Install dependencies
27
run: uv sync --locked --dev
β.gitignoreβ
@@ -4,3 +4,4 @@ dist/
4
main.spec
5
.coverage
6
coverage.xml
7
+.python-version
0 commit comments