Skip to content

Commit b36ee2c

Browse files
committed
Removing failing on clippy errors
Signed-off-by: zackcam <[email protected]>
1 parent 02b8970 commit b36ee2c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
- name: Run cargo and clippy format check
2727
run: |
2828
cargo fmt --check
29-
cargo clippy --profile release --all-targets -- -D clippy::all
29+
cargo clippy --profile release --all-targets
3030
- name: Release Build
3131
run: |
3232
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
3434
else
35-
RUSTFLAGS="-D warnings" cargo build --all --all-targets --release
35+
cargo build --all --all-targets --release
3636
fi
3737
- name: Run unit tests
3838
run: cargo test --features enable-system-alloc
@@ -72,9 +72,9 @@ jobs:
7272
- name: Run cargo and clippy format check
7373
run: |
7474
cargo fmt --check
75-
cargo clippy --profile release --all-targets -- -D clippy::all
75+
cargo clippy --profile release --all-targets
7676
- name: Release Build
77-
run: RUSTFLAGS="-D warnings" cargo build --all --all-targets --release
77+
run: cargo build --all --all-targets --release
7878
- name: Run unit tests
7979
run: cargo test --features enable-system-alloc
8080

@@ -91,13 +91,13 @@ jobs:
9191
- name: Run cargo and clippy format check
9292
run: |
9393
cargo fmt --check
94-
cargo clippy --profile release --all-targets -- -D clippy::all
94+
cargo clippy --profile release --all-targets
9595
- name: Release Build
9696
run: |
9797
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
9999
else
100-
RUSTFLAGS="-D warnings" cargo build --all --all-targets --release
100+
cargo build --all --all-targets --release
101101
fi
102102
- name: Run unit tests
103103
run: cargo test --features enable-system-alloc

0 commit comments

Comments
 (0)