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 929185f commit 2da2b95Copy full SHA for 2da2b95
.github/workflows/ci.yml
@@ -9,18 +9,24 @@ on:
9
branches:
10
- develop
11
12
+env:
13
+ UV_SYSTEM_PYTHON: true
14
+
15
jobs:
16
ci:
17
runs-on: ubuntu-latest
18
strategy:
19
fail-fast: false
20
matrix:
- python-version: ["3.12", "3.13", "3.14"]
21
+ python-version: ["3.12", "3.13", "3.14-dev"]
22
23
steps:
24
- name: Checkout Repository
25
uses: actions/checkout@v5
26
27
+ - name: Set up Python ${{ matrix.python-version }}
28
+ uses: actions/setup-python@v5
29
30
- name: Set up JDK 17
31
uses: actions/setup-java@v4
32
with:
@@ -34,7 +40,6 @@ jobs:
34
40
uses: astral-sh/setup-uv@v6
35
41
36
42
activate-environment: true
37
- python-version: ${{ matrix.python-version }}
38
43
39
44
- name: Setup workspace
45
run: |
.python-version
0 commit comments