From 03aaf6be762c8d3210b63c7af545f6974206c1e4 Mon Sep 17 00:00:00 2001 From: Jonas Bushart Date: Sat, 20 May 2023 16:29:33 +0200 Subject: [PATCH] Check that listed components are installed even with a rust-toolchain file --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f84d14e..ee6fda8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,7 @@ jobs: id: toolchain with: toolchain: ${{matrix.rust}} + components: clippy - name: Check ${{'${{steps.toolchain.outputs.rustc-version}}'}} run: echo '${{steps.toolchain.outputs.rustc-version}}' - name: Check ${{'${{steps.toolchain.outputs.cargo-version}}'}} @@ -62,4 +63,4 @@ jobs: # Add tiny empty crate. # This checks that registry access works. - run: cargo add serde_as - - run: cargo check + - run: cargo clippy