File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ jobs:
164
164
- name : Install Rust
165
165
uses : dtolnay/rust-toolchain@stable
166
166
with :
167
- toolchain : " 1.84 " # STABLE
167
+ toolchain : " 1.85 " # STABLE
168
168
- uses : Swatinem/rust-cache@v2
169
169
- name : UI Tests
170
170
run : make test-ui-${{ matrix.features }}
@@ -207,7 +207,7 @@ jobs:
207
207
- name : Install Rust
208
208
uses : dtolnay/rust-toolchain@stable
209
209
with :
210
- toolchain : " 1.84 " # STABLE
210
+ toolchain : " 1.85 " # STABLE
211
211
- uses : Swatinem/rust-cache@v2
212
212
- name : Check documentation
213
213
env :
@@ -222,7 +222,7 @@ jobs:
222
222
- name : Install Rust
223
223
uses : dtolnay/rust-toolchain@stable
224
224
with :
225
- toolchain : " 1.84 " # STABLE
225
+ toolchain : " 1.85 " # STABLE
226
226
components : rustfmt
227
227
- uses : Swatinem/rust-cache@v2
228
228
- name : Check formatting
@@ -236,7 +236,7 @@ jobs:
236
236
- name : Install Rust
237
237
uses : dtolnay/rust-toolchain@stable
238
238
with :
239
- toolchain : " 1.84 " # STABLE
239
+ toolchain : " 1.85 " # STABLE
240
240
components : clippy
241
241
- uses : Swatinem/rust-cache@v2
242
242
- name : Lint (ultra-minimal)
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ ifneq (${TOOLCHAIN_TARGET},)
10
10
ARGS+ =--target ${TOOLCHAIN_TARGET}
11
11
endif
12
12
13
- STABLE? =1.84
13
+ STABLE? =1.85
14
14
15
15
_FEATURES = minimal default wasm full debug release
16
16
_FEATURES_minimal = --no-default-features --features "std"
Original file line number Diff line number Diff line change 8
8
#![ cfg( feature = "unstable-derive-ui-tests" ) ]
9
9
10
10
#[ cfg( feature = "derive" ) ]
11
- #[ rustversion:: attr( not( stable( 1.84 ) ) , ignore) ] // STABLE
11
+ #[ rustversion:: attr( not( stable( 1.85 ) ) , ignore) ] // STABLE
12
12
#[ test]
13
13
fn ui ( ) {
14
14
let t = trybuild:: TestCases :: new ( ) ;
You can’t perform that action at this time.
0 commit comments