From 23c87ad0fbb2cecda15e3910b6fabbc946390ae1 Mon Sep 17 00:00:00 2001 From: Aaron Ai Date: Sun, 23 Apr 2023 22:21:09 +0800 Subject: [PATCH] Remove clippy for testing (#494) --- .github/workflows/rust_build.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/rust_build.yml b/.github/workflows/rust_build.yml index 404c21041..eb39e57df 100644 --- a/.github/workflows/rust_build.yml +++ b/.github/workflows/rust_build.yml @@ -17,26 +17,6 @@ jobs: - name: Code format check working-directory: ./rust run: cargo fmt --check - clippy: - runs-on: ubuntu-latest - name: clippy check - permissions: write-all - strategy: - fail-fast: false - steps: - - uses: actions/checkout@v3 - with: - submodules: true - - name: Install stable - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - components: clippy - - name: Clippy check - uses: actions-rs/clippy-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --all-features --manifest-path rust/Cargo.toml -- -D warnings doc: runs-on: ubuntu-latest name: doc check