@@ -24,13 +24,13 @@ jobs:
2424 - name : Run cargo and clippy format check
2525 run : |
2626 cargo fmt --check
27- cargo clippy --profile release --all-targets -- -D clippy::all
27+ cargo clippy --profile release --all-targets
2828 - name : Release Build
2929 run : |
3030 if [ "${{ matrix.server_version }}" = "8.0" ]; then
31- RUSTFLAGS="-D warnings" cargo build --all --all-targets --release --features valkey_8_0
31+ cargo build --all --all-targets --release --features valkey_8_0
3232 else
33- RUSTFLAGS="-D warnings" cargo build --all --all-targets --release
33+ cargo build --all --all-targets --release
3434 fi
3535 - name : Run unit tests
3636 run : cargo test --features enable-system-alloc
7070 - name : Run cargo and clippy format check
7171 run : |
7272 cargo fmt --check
73- cargo clippy --profile release --all-targets -- -D clippy::all
73+ cargo clippy --profile release --all-targets
7474 - name : Release Build
75- run : RUSTFLAGS="-D warnings" cargo build --all --all-targets --release
75+ run : cargo build --all --all-targets --release
7676 - name : Run unit tests
7777 run : cargo test --features enable-system-alloc
7878
@@ -89,13 +89,13 @@ jobs:
8989 - name : Run cargo and clippy format check
9090 run : |
9191 cargo fmt --check
92- cargo clippy --profile release --all-targets -- -D clippy::all
92+ cargo clippy --profile release --all-targets
9393 - name : Release Build
9494 run : |
9595 if [ "${{ matrix.server_version }}" = "8.0" ]; then
96- RUSTFLAGS="-D warnings" cargo build --all --all-targets --release --features valkey_8_0
96+ cargo build --all --all-targets --release --features valkey_8_0
9797 else
98- RUSTFLAGS="-D warnings" cargo build --all --all-targets --release
98+ cargo build --all --all-targets --release
9999 fi
100100 - name : Run unit tests
101101 run : cargo test --features enable-system-alloc
0 commit comments