File tree 3 files changed +2
-6
lines changed
3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 76
76
- uses : actions/checkout@v2
77
77
- name : Install Rust
78
78
run : rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
79
+ - uses : taiki-e/install-action@cargo-hack
79
80
- name : Check features
80
81
run : ./ci/check-features.sh
81
82
87
88
- uses : actions/checkout@v2
88
89
- name : Install Rust
89
90
run : rustup update nightly && rustup default nightly
91
+ - uses : taiki-e/install-action@cargo-hack
90
92
- name : dependency tree check
91
93
run : ./ci/dependencies.sh
92
94
Original file line number Diff line number Diff line change 3
3
cd " $( dirname " $0 " ) " /..
4
4
set -ex
5
5
6
- if [[ ! -x " $( command -v cargo-hack) " ]]; then
7
- cargo +stable install --debug cargo-hack || exit 1
8
- fi
9
-
10
6
if [[ " $RUST_VERSION " != " nightly" * ]]; then
11
7
# On MSRV, features other than nightly should work.
12
8
# * `--feature-powerset` - run for the feature powerset which includes --no-default-features and default features of package
Original file line number Diff line number Diff line change 3
3
cd " $( dirname " $0 " ) " /..
4
4
set -ex
5
5
6
- cargo install cargo-hack
7
-
8
6
cargo tree
9
7
cargo tree --duplicate
10
8
cargo tree --duplicate || exit 1
You can’t perform that action at this time.
0 commit comments