diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66fffbf..9998336 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,17 +66,12 @@ jobs: msrv: runs-on: ubuntu-latest - strategy: - matrix: - # When updating this, the reminder to update the minimum supported - # Rust version in Cargo.toml. - rust: ['1.61'] steps: - uses: actions/checkout@v4 - - name: Install Rust - run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} - - run: cargo build --all - - run: cargo build --all --no-default-features + - name: Install cargo-hack + uses: taiki-e/install-action@cargo-hack + - run: cargo hack build --all --rust-version + - run: cargo hack build --all --no-default-features --rust-version clippy: runs-on: ubuntu-latest