From 62dde9677430ae87235048fde4b2cd937116ba80 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Sat, 22 Apr 2023 00:33:11 +0800 Subject: [PATCH] ci: Do not deny warnings until we upgraded `clap` to v4 (clap-rs/clap#4849) --- .github/workflows/rust.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1354943da..4aaf33ad1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -108,7 +108,8 @@ jobs: components: clippy - run: cargo clippy --all -- -D warnings - run: cargo clippy --all --features runtime-async-std-native-tls,sqlx-all -- -D warnings - - run: cargo clippy --manifest-path sea-orm-cli/Cargo.toml -- -D warnings + # Do not deny warnings until we upgraded `clap` to v4. https://github.com/clap-rs/clap/issues/4849 + - run: cargo clippy --manifest-path sea-orm-cli/Cargo.toml - run: cargo clippy --manifest-path sea-orm-migration/Cargo.toml -- -D warnings rustfmt: