From dff26940103fd827f03285f43feb48b31e7d7acf Mon Sep 17 00:00:00 2001 From: cstef Date: Mon, 8 Jul 2024 18:16:00 +0200 Subject: [PATCH] Add clippy check for serde feature in CI --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6396f1c..4cd17e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,7 @@ jobs: - run: cargo fmt -- --check - run: cargo clippy --examples --tests -- -D warnings - run: cargo clippy --examples --tests --features search -- -D warnings + - run: cargo clippy --examples --tests --features serde -- -D warnings - run: cargo clippy --examples --tests --no-default-features --features termion -- -D warnings - run: cargo clippy --examples --tests --no-default-features --features termion,search -- -D warnings - run: cargo clippy --examples --tests --no-default-features --features termwiz -- -D warnings