From a94206fa79e7b0b2df0e1dad6ff0eebe86b13674 Mon Sep 17 00:00:00 2001 From: "Shahar \"Dawn\" Or" Date: Sat, 2 Sep 2023 09:53:20 -0400 Subject: [PATCH] build: enforce clippy Co-authored-by: warren2k <846021+warren2k@users.noreply.github.com> --- .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 e9b6959c6..50c918e13 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,8 @@ jobs: - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.rust }} - - run: RUSTFLAGS="--deny warnings" cargo check ${{ matrix.features }} + components: clippy + - run: RUSTFLAGS="--deny warnings" cargo clippy ${{ matrix.features }} test: name: test