From 43ec4a1d2a4cb84ff024f3830c7cb8ebc25c88de Mon Sep 17 00:00:00 2001 From: roblabla Date: Fri, 10 Apr 2020 14:07:26 +0000 Subject: [PATCH] CI: Install clippy/rustfmt with the rest of the toolchain --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1cd8919..659a77b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - - run: rustup component add rustfmt + components: rustfmt - uses: actions-rs/cargo@v1 with: command: fmt @@ -64,7 +64,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - - run: rustup component add clippy + components: clippy - uses: actions-rs/cargo@v1 with: command: clippy