From 9b0ab4218317b72941fbd27a20d6c4ea1bc9e72e Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 18 Jun 2021 21:34:03 +0900 Subject: [PATCH] Fix clippy issue --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4cbd220da..b91d0b8fef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -254,12 +254,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Install Rust and Clippy - run: | - toolchain=nightly-$(curl -sSf https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/clippy) - rustup set profile minimal - rustup default "$toolchain" - rustup component add clippy + - name: Install Rust + run: rustup toolchain install nightly --component llvm-tools-preview && rustup default nightly - run: cargo clippy --workspace --all-features --all-targets fmt: