@@ -26,13 +26,13 @@ jobs:
26
26
- name : Run cargo and clippy format check
27
27
run : |
28
28
cargo fmt --check
29
- cargo clippy --profile release --all-targets -- -D clippy::all
29
+ cargo clippy --profile release --all-targets
30
30
- name : Release Build
31
31
run : |
32
32
if [ "${{ matrix.server_version }}" = "8.0" ]; then
33
- RUSTFLAGS="-D warnings" cargo build --all --all-targets --release --features valkey_8_0
33
+ cargo build --all --all-targets --release --features valkey_8_0
34
34
else
35
- RUSTFLAGS="-D warnings" cargo build --all --all-targets --release
35
+ cargo build --all --all-targets --release
36
36
fi
37
37
- name : Run unit tests
38
38
run : cargo test --features enable-system-alloc
72
72
- name : Run cargo and clippy format check
73
73
run : |
74
74
cargo fmt --check
75
- cargo clippy --profile release --all-targets -- -D clippy::all
75
+ cargo clippy --profile release --all-targets
76
76
- name : Release Build
77
- run : RUSTFLAGS="-D warnings" cargo build --all --all-targets --release
77
+ run : cargo build --all --all-targets --release
78
78
- name : Run unit tests
79
79
run : cargo test --features enable-system-alloc
80
80
@@ -91,13 +91,13 @@ jobs:
91
91
- name : Run cargo and clippy format check
92
92
run : |
93
93
cargo fmt --check
94
- cargo clippy --profile release --all-targets -- -D clippy::all
94
+ cargo clippy --profile release --all-targets
95
95
- name : Release Build
96
96
run : |
97
97
if [ "${{ matrix.server_version }}" = "8.0" ]; then
98
- RUSTFLAGS="-D warnings" cargo build --all --all-targets --release --features valkey_8_0
98
+ cargo build --all --all-targets --release --features valkey_8_0
99
99
else
100
- RUSTFLAGS="-D warnings" cargo build --all --all-targets --release
100
+ cargo build --all --all-targets --release
101
101
fi
102
102
- name : Run unit tests
103
103
run : cargo test --features enable-system-alloc
0 commit comments