From 762ff51c4452acee48bf7da608d3c568bac090ac Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 20 Nov 2024 07:58:08 -0800 Subject: [PATCH] fix: Don't block on clippy warnings for now --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 590bd80a..e33590a1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -71,7 +71,8 @@ jobs: - name: Check rustfmt run: cargo fmt --all --check - name: Check clippy - run: cargo clippy --all-targets --all-features -- -D warnings + # TODO: -- -D warnings + run: cargo clippy --all-targets --all-features - name: Build release binary run: cargo build --release - name: Upload binary artifact @@ -112,7 +113,8 @@ jobs: - name: Check rustfmt run: cargo fmt --all --check - name: Check clippy - run: cargo clippy --all-targets --all-features -- -D warnings + # TODO: Deny warnings + run: cargo clippy --all-targets --all-features minimal-versions: needs: [quick-test]