File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 10
10
11
11
env :
12
12
COLUMNS : 150
13
+ UV_PYTHON : 3.13
13
14
14
15
jobs :
15
16
coverage :
36
37
enable-cache : true
37
38
38
39
- name : install deps
39
- run : uv sync --python 3.13 -- group testing
40
+ run : uv sync --group testing
40
41
41
42
- run : rustc --version --verbose
42
43
@@ -128,7 +129,7 @@ jobs:
128
129
enable-cache : true
129
130
130
131
- name : install deps
131
- run : uv sync --python 3.13 -- group testing
132
+ run : uv sync --group testing
132
133
133
134
- run : uv pip install -e .
134
135
env :
@@ -152,9 +153,12 @@ jobs:
152
153
with :
153
154
enable-cache : true
154
155
156
+ - name : install deps
157
+ run : uv sync --group testing
158
+
155
159
- name : resolve MSRV
156
160
id : resolve-msrv
157
- run : echo MSRV=`python -c 'import tomllib; print(tomllib.load(open("Cargo.toml", "rb"))["package"]["rust-version"])'` >> $GITHUB_OUTPUT
161
+ run : echo MSRV=`uv run python -c 'import tomllib; print(tomllib.load(open("Cargo.toml", "rb"))["package"]["rust-version"])'` >> $GITHUB_OUTPUT
158
162
159
163
- name : install rust MSRV
160
164
uses : dtolnay/rust-toolchain@master
@@ -164,9 +168,6 @@ jobs:
164
168
- name : cache rust
165
169
uses : Swatinem/rust-cache@v2
166
170
167
- - name : install deps
168
- run : uv sync --python 3.13 --group testing
169
-
170
171
- run : uv pip install -e .
171
172
env :
172
173
RUST_BACKTRACE : 1
@@ -286,7 +287,7 @@ jobs:
286
287
287
288
- name : install deps
288
289
run : |
289
- uv sync --python 3.13 -- group linting
290
+ uv sync --group linting
290
291
make build-dev
291
292
uv pip freeze
292
293
You can’t perform that action at this time.
0 commit comments