diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 955b364de..4ab2d754a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,8 +66,8 @@ jobs: command: fmt args: --all -- --check - clippy-stable: - name: Clippy check (stable) + clippy-check: + name: Clippy check permissions: checks: write runs-on: ubuntu-latest @@ -83,21 +83,3 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} args: --all-features --workspace - - clippy-nightly: - name: Clippy check (nightly) - permissions: - checks: write - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - - uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af - with: - toolchain: nightly - profile: minimal - components: clippy - override: true - - uses: actions-rs/clippy-check@b5b5f21f4797c02da247df37026fcd0a5024aa4d - with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --all-features --workspace