From d97c985c1123f95d6d1d7a1fab12a4009e46ff9e Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 19 May 2021 13:31:22 +0200 Subject: [PATCH] quickstart: Install rustfmt/clippy via "components" --- recipes/quickstart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/quickstart.md b/recipes/quickstart.md index b228ab9..64a3ce8 100644 --- a/recipes/quickstart.md +++ b/recipes/quickstart.md @@ -58,8 +58,8 @@ jobs: with: profile: minimal toolchain: stable + components: rustfmt override: true - - run: rustup component add rustfmt - uses: actions-rs/cargo@v1 with: command: fmt @@ -74,8 +74,8 @@ jobs: with: profile: minimal toolchain: stable + components: clippy override: true - - run: rustup component add clippy - uses: actions-rs/cargo@v1 with: command: clippy