Skip to content

Commit d9a09e7

Browse files
committed
Do not run clippy on 0.3 branch
1 parent 440e2f0 commit d9a09e7

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -228,18 +228,20 @@ jobs:
228228
# `--cfg futures_sanitizer`.
229229
RUSTFLAGS: -D warnings -Z sanitizer=${{ matrix.sanitizer }} --cfg futures_sanitizer
230230

231-
clippy:
232-
name: cargo clippy
233-
runs-on: ubuntu-latest
234-
steps:
235-
- uses: actions/checkout@v2
236-
- name: Install Rust and Clippy
237-
run: |
238-
toolchain=nightly-$(curl -sSf https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/clippy)
239-
rustup set profile minimal
240-
rustup default "$toolchain"
241-
rustup component add clippy
242-
- run: cargo clippy --workspace --all-features --all-targets
231+
# This branch no longer actively developed. Most commits to this
232+
# branch are backporting and should not be blocked by clippy.
233+
# clippy:
234+
# name: cargo clippy
235+
# runs-on: ubuntu-latest
236+
# steps:
237+
# - uses: actions/checkout@v2
238+
# - name: Install Rust and Clippy
239+
# run: |
240+
# toolchain=nightly-$(curl -sSf https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/clippy)
241+
# rustup set profile minimal
242+
# rustup default "$toolchain"
243+
# rustup component add clippy
244+
# - run: cargo clippy --workspace --all-features --all-targets
243245

244246
docs:
245247
name: cargo doc

0 commit comments

Comments
 (0)