Skip to content

Commit 5b95585

Browse files
authored
Removing failing on clippy errors in github ci (#66)
Signed-off-by: zackcam <[email protected]>
1 parent 32b0218 commit 5b95585

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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
@@ -70,9 +70,9 @@ jobs:
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

Comments
 (0)