File tree Expand file tree Collapse file tree 3 files changed +13
-18
lines changed Expand file tree Collapse file tree 3 files changed +13
-18
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
check :
12
- name : check
13
12
runs-on : ubuntu-latest
14
13
strategy :
15
14
matrix :
16
- build : [msrv, stable]
17
15
features :
18
16
[
19
17
" " ,
20
18
" --no-default-features" ,
21
19
" --no-default-features --features use_alloc" ,
22
20
" --all-targets --all-features" ,
23
21
]
24
- include :
25
- - build : msrv
26
- rust : 1.62.1
27
- - build : stable
28
- rust : stable
29
- exclude :
30
- - build : msrv
31
- # we only care about the MSRV with respect to the lib target
32
- features : " --all-targets --all-features"
33
22
steps :
34
23
- uses : actions/checkout@v4
35
- - uses : dtolnay/rust-toolchain@master
36
- with :
37
- toolchain : ${{ matrix.rust }}
24
+ - uses : dtolnay/rust-toolchain@stable
38
25
- run : cargo check ${{ matrix.features }}
39
26
27
+ msrv :
28
+ runs-on : ubuntu-latest
29
+ env :
30
+ CARGO_NET_GIT_FETCH_WITH_CLI : true
31
+ steps :
32
+ - uses : actions/checkout@v4
33
+ - uses : taiki-e/install-action@cargo-no-dev-deps
34
+
35
+ - run : cargo no-dev-deps check
36
+
40
37
test :
41
- name : test
42
38
runs-on : ubuntu-latest
43
39
steps :
44
40
- uses : actions/checkout@v4
62
58
if : success()
63
59
runs-on : ubuntu-latest
64
60
needs : [check, test]
65
-
66
61
steps :
67
62
- name : Mark the job as successful
68
63
run : exit 0
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ exclude = ["/bors.toml"]
16
16
17
17
edition = " 2018"
18
18
19
- rust-version = " 1.36.0 "
19
+ rust-version = " 1.43.1 "
20
20
21
21
[lib ]
22
22
bench = false
Original file line number Diff line number Diff line change 42
42
//!
43
43
//! ## Rust Version
44
44
//!
45
- //! This version of itertools requires Rust 1.36 or later.
45
+ //! This version of itertools requires Rust 1.43.1 or later.
46
46
#![ doc( html_root_url = "https://docs.rs/itertools/0.11/" ) ]
47
47
48
48
#[ cfg( not( feature = "use_std" ) ) ]
You can’t perform that action at this time.
0 commit comments