From d74ba5db23337df5edb878732465754c6c4c27fc Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Wed, 18 Oct 2023 13:30:34 +0200 Subject: [PATCH] chore: rustup is installed, perhaps we don't need to install a custom toolchain --- .github/workflows/ci.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1454fe7..a7be65a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -143,14 +143,9 @@ jobs: # - run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore,blst-portable clippy_check_blst: - needs: set-msrv runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@master - with: - toolchain: ${{needs.set-msrv.outputs.msrv}} - components: clippy - name: Run Clippy run: cargo clippy --workspace --all-targets --no-default-features --features blst,multicore -- -D warnings