v0.2.x: disable clippy check (#2961)

This commit is contained in:
Taiki Endo
2020-10-14 17:11:12 -04:00
committed by GitHub
parent a517dbf605
commit b69d4a6108
+16 -14
View File
@@ -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