From 2a8384b9536c81ca6cf7f699589f5aea4d4e738c Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Sat, 29 Jun 2024 13:28:06 +0200 Subject: [PATCH] ci: remove clippy job from Basic CI workflow --- .github/workflows/ci.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 004a4a5d..ea396f22 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,18 +37,6 @@ jobs: - run: rustup component add rustfmt - run: cargo fmt --all -- --check - clippy: - name: cargo clippy -- -D warnings - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, macOS-latest, windows-latest] - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - - run: rustup component add clippy - - run: cargo clippy --all-targets -- -D warnings - coverage: name: Code Coverage runs-on: ${{ matrix.job.os }}