File tree Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1010 matrix :
1111 rust : [
1212 1.31.0, # MSRV
13+ 1.51.0,
14+ 1.60.0,
1315 stable,
1416 beta,
1517 nightly,
2426 - uses : dtolnay/rust-toolchain@master
2527 with :
2628 toolchain : ${{ matrix.rust }}
27- - run : cargo build
2829 - run : ./ci/test_full.sh
2930
3031 # try a target that doesn't have std at all
Original file line number Diff line number Diff line change 2424 - uses : dtolnay/rust-toolchain@master
2525 with :
2626 toolchain : ${{ matrix.rust }}
27- - run : cargo build
2827 - run : ./ci/test_full.sh
Original file line number Diff line number Diff line change 2020 - uses : dtolnay/rust-toolchain@master
2121 with :
2222 toolchain : ${{ matrix.rust }}
23- - run : cargo build
2423 - run : ./ci/test_full.sh
2524
2625 fmt :
Original file line number Diff line number Diff line change 55set -ex
66
77ci=$( dirname $0 )
8- for version in 1.31.0 stable beta nightly; do
8+ for version in 1.31.0 1.51.0 1.60.0 stable beta nightly; do
99 rustup run " $version " " $ci /test_full.sh"
1010done
Original file line number Diff line number Diff line change 3030FEATURES=()
3131echo " Testing supported features: ${FEATURES[*]} "
3232
33+ cargo generate-lockfile
34+
35+ # num-traits 0.2.19 started using dep: features, which requires 1.60 and is
36+ # otherwise ignored down to 1.51, but we need a manual downgrade before that.
37+ check_version 1.51 || cargo update -p num-traits --precise 0.2.18
38+
3339set -x
3440
3541# test the default
You can’t perform that action at this time.
0 commit comments