Skip to content

Commit da49a7d

Browse files
authored
Merge pull request #945 from avelanarius/revert-uninlined
Revert "CI/Makefile: disable `uninlined_format_args` clippy lint"
2 parents 87908f3 + 55c8a45 commit da49a7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Format check
3030
run: cargo fmt --verbose --all -- --check
3131
- name: Clippy check
32-
run: cargo clippy --verbose --all-targets -- -Aclippy::uninlined_format_args
32+
run: cargo clippy --verbose --all-targets
3333
- name: Cargo check without features
3434
run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features ""
3535
- name: Cargo check with all serialization features

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ check-without-features:
2727

2828
.PHONY: clippy
2929
clippy:
30-
RUSTFLAGS=-Dwarnings cargo clippy --all-targets -- -Aclippy::uninlined_format_args
30+
RUSTFLAGS=-Dwarnings cargo clippy --all-targets
3131

3232
.PHONY: test
3333
test: up

0 commit comments

Comments
 (0)