From 6f9d5277a06efcd4ff04d97865cabf1646b5e817 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Sun, 7 Mar 2021 14:10:44 -0800 Subject: [PATCH] Don't bother with clippy on CI for now --- .github/workflows/test.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2875c7be9..2d26c7d62 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,19 +46,3 @@ jobs: with: command: fmt args: --all -- --check - - clippy: - name: Clippy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - run: rustup component add clippy - - uses: actions-rs/cargo@v1 - with: - command: clippy - args: -- -D warnings