From b69d4a6108f322ee7010642370592a5e3508cc4d Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Thu, 15 Oct 2020 06:11:12 +0900 Subject: [PATCH] v0.2.x: disable clippy check (#2961) --- .github/workflows/ci.yml | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 319fb0de1cf..80e7b1413df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - features - minrust - fmt - - clippy + # - clippy - docs - loom steps: @@ -190,19 +190,21 @@ jobs: exit 1 fi - clippy: - name: clippy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Install Rust - run: rustup update stable - - name: Install clippy - run: rustup component add clippy - - # Run clippy - - name: "clippy --all" - run: cargo clippy --all --tests + # This branch no longer actively developed. Most commits to this + # branch are backporting and should not be blocked by clippy. + # clippy: + # name: clippy + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v2 + # - name: Install Rust + # run: rustup update stable + # - name: Install clippy + # run: rustup component add clippy + # + # # Run clippy + # - name: "clippy --all" + # run: cargo clippy --all --tests docs: name: docs