+5
-2
.github/workflows/ci.yml
+5
-2
.github/workflows/ci.yml
···
16
16
17
17
steps:
18
18
- name: Install Rust environment
19
+
uses: hecrj/setup-rust-action@v1
20
+
with:
21
+
rust-version: ${{ matrix.rust }}
22
+
- name: Install Cargo plugins
19
23
run: |
20
-
rustup toolchain install stable nightly
21
-
rustup default stable
24
+
rustup toolchain install nightly
22
25
cargo install cargo-hack cargo-minimal-versions
23
26
- name: Checkout code
24
27
uses: actions/checkout@v2