File tree 2 files changed +9
-8
lines changed
2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -196,21 +196,22 @@ jobs:
196
196
strategy :
197
197
fail-fast : false
198
198
matrix :
199
- os : [ubuntu-latest, windows-latest]
199
+ os : [ubuntu-latest, windows-latest, macos-latest]
200
+ env :
201
+ MSRV : 1.66.0
200
202
steps :
201
203
- uses : actions/checkout@v4
202
204
- name : Install Rust
203
205
run : |
204
- rustup toolchain install 1.63.0 --no-self-update --profile minimal
206
+ rustup toolchain install $MSRV --no-self-update --profile minimal
205
207
rustup toolchain install nightly --no-self-update --profile minimal
206
- rustup default 1.63.0
208
+ rustup default $MSRV
207
209
shell : bash
208
210
- name : Create Cargo.lock with minimal version
209
211
run : cargo +nightly update -Zminimal-versions
210
- - name : Cache downloaded crates since 1.63 is really slow in fetching
211
- uses : Swatinem/rust-cache@v2
212
- - run : cargo check --lib -p cc --locked
213
- - run : cargo check --lib -p cc --locked --all-features
212
+ - uses : Swatinem/rust-cache@v2
213
+ - run : env -u CARGO_REGISTRIES_CRATES_IO_PROTOCOL cargo check --lib -p cc --locked
214
+ - run : env -u CARGO_REGISTRIES_CRATES_IO_PROTOCOL cargo check --lib -p cc --locked --all-features
214
215
215
216
clippy :
216
217
name : Clippy
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ categories = ["development-tools::build-utils"]
17
17
# The binary target is only used by tests.
18
18
exclude = [" /.github" , " tests" , " src/bin" ]
19
19
edition = " 2018"
20
- rust-version = " 1.63 "
20
+ rust-version = " 1.66 "
21
21
22
22
[dependencies ]
23
23
jobserver = { version = " 0.1.30" , default-features = false , optional = true }
You can’t perform that action at this time.
0 commit comments