Skip to content

Commit

Permalink
v0.2.x: disable clippy check (#2961)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Oct 14, 2020
1 parent a517dbf commit b69d4a6
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions .github/workflows/ci.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
- features
- minrust
- fmt
- clippy
# - clippy
- docs
- loom
steps:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b69d4a6

Please sign in to comment.