From 342496b4488e8fa159e68037acf0abfcafb493ff Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 4 Sep 2023 11:55:39 +0200 Subject: [PATCH] Don't deny warnings from nightly clippy Since these can be added at any time. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 302ebd7959..99fbb2dcfa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -298,6 +298,6 @@ jobs: with: components: clippy - run: cargo clippy --package rustls --all-features --all-targets - - run: cargo clippy --package rustls --no-default-features --all-targets -- --deny warnings - - run: cargo clippy --manifest-path=connect-tests/Cargo.toml --all-features --all-targets -- --deny warnings - - run: cargo clippy --manifest-path=fuzz/Cargo.toml --all-features --all-targets -- --deny warnings + - run: cargo clippy --package rustls --no-default-features --all-targets + - run: cargo clippy --manifest-path=connect-tests/Cargo.toml --all-features --all-targets + - run: cargo clippy --manifest-path=fuzz/Cargo.toml --all-features --all-targets