From 6882178212a9579dd92446307627fc96e5bc8d32 Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Tue, 3 Sep 2024 17:55:54 +0200 Subject: [PATCH] chore: fix ci config --- .github/workflows/ci.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8694103f..99f87b9cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,30 +29,20 @@ jobs: # echo "MSRV=$MSRV" | tee --append "$GITHUB_OUTPUT" check_clippy: - needs: set-msrv runs-on: ubuntu-24.04 name: Clippy steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@master - with: - toolchain: ${{ needs.set-msrv.outputs.msrv }} - components: clippy - name: Install required packages run: sudo apt install --no-install-recommends --yes libhwloc-dev ocl-icd-opencl-dev - name: Run cargo clippy run: cargo clippy --all-targets --workspace -- -D warnings check_fmt: - needs: set-msrv runs-on: ubuntu-24.04 name: Checking fmt steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@master - with: - toolchain: ${{ needs.set-msrv.outputs.msrv }} - components: rustfmt - name: Run cargo fmt run: cargo fmt --all -- --check