From 833440b1ac54597204b33cbc2c551e91c96a70ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Fri, 24 May 2024 16:59:39 +0300 Subject: [PATCH] Remove `--all` flags --- .github/workflows/benches.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benches.yml b/.github/workflows/benches.yml index 197676fd4c..f0112ec88d 100644 --- a/.github/workflows/benches.yml +++ b/.github/workflows/benches.yml @@ -19,8 +19,8 @@ jobs: toolchain: nightly components: clippy, rustfmt - name: Rustfmt - run: cargo fmt --all -- --check + run: cargo fmt -- --check - name: Clippy - run: cargo clippy --all --all-targets -- -D warnings + run: cargo clippy --all-targets -- -D warnings - name: Build run: RUSTFLAGS=-Dwarnings cargo build --all-targets