Skip to content

Commit

Permalink
Use Rust stable to install cargo hack.
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioBenitez committed Jun 23, 2023
1 parent 5e997c7 commit 53857e4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,17 @@ jobs:
- name: Checkout Sources
uses: actions/checkout@v2

- name: Install Rust
- name: Install Rust (stable)
uses: dtolnay/rust-toolchain@stable

- name: Install Rust (${{ matrix.toolchain }})
uses: dtolnay/rust-toolchain@master
if: matrix.toolchain != "stable"
with:
toolchain: ${{ matrix.toolchain }}

- name: Install Cargo Hack
run: cargo install cargo-hack
run: cargo +stable install cargo-hack
shell: bash

- name: Check Feature Combinations
Expand Down

0 comments on commit 53857e4

Please sign in to comment.