diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a53d4ef59e..0f541ca3b6 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -29,7 +29,7 @@ jobs: - name: Format check run: cargo fmt --verbose --all -- --check - name: Clippy check - run: cargo clippy --verbose --all-targets -- -Aclippy::uninlined_format_args + run: cargo clippy --verbose --all-targets - name: Cargo check without features run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "" - name: Cargo check with all serialization features diff --git a/Makefile b/Makefile index 91d4485bf9..5051d660af 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ check-without-features: .PHONY: clippy clippy: - RUSTFLAGS=-Dwarnings cargo clippy --all-targets -- -Aclippy::uninlined_format_args + RUSTFLAGS=-Dwarnings cargo clippy --all-targets .PHONY: test test: up