From 6202cb45b1ade4200b6197a2c855f1403ce46469 Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Mon, 23 Nov 2020 14:29:57 -0800 Subject: [PATCH] ci: remove nightly clippy Closes #1212 --- .github/workflows/ci.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05ff5c02d..61e2473d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,26 +112,6 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} args: --all-features --all-targets -- -D warnings - clippy-nightly: - name: Clippy (nightly) - timeout-minutes: 30 - runs-on: ubuntu-latest - continue-on-error: true - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: nightly - components: clippy - override: true - - name: Run Clippy (nightly) - uses: actions-rs/clippy-check@v1 - continue-on-error: true - with: - name: Clippy (nightly) - token: ${{ secrets.GITHUB_TOKEN }} - args: --all-features --all-targets -- -W clippy::all - fmt: name: Rustfmt timeout-minutes: 30