From 9940d275fb0361b71b9a2a2dc37864d94289569f Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Tue, 1 Feb 2022 07:34:49 -0700 Subject: [PATCH] Use clippy beta instead of nightly --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cecf52870..9b18f582e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,8 +105,8 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} args: --all-features --all-targets -- -D warnings - clippy-nightly: - name: Clippy (nightly) + clippy-beta: + name: Clippy (beta) timeout-minutes: 30 runs-on: ubuntu-latest continue-on-error: true @@ -114,14 +114,14 @@ jobs: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: beta components: clippy override: true - - name: Run Clippy (nightly) + - name: Run Clippy (beta) uses: actions-rs/clippy-check@v1 continue-on-error: true with: - name: Clippy (nightly) + name: Clippy (beta) token: ${{ secrets.GITHUB_TOKEN }} args: --all-features --all-targets -- -W clippy::all