From 16b8863e1baec71191a63c0432dbfbac6350bc91 Mon Sep 17 00:00:00 2001 From: GitGhillie Date: Tue, 16 Jan 2024 13:56:24 +0100 Subject: [PATCH] Elevate clippy warnings to errors --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c279351..4795d49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,6 +69,6 @@ jobs: - name: Install alsa and udev run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev - name: Run clippy - run: cargo clippy --workspace --all-targets --all-features + run: cargo clippy --workspace --all-targets --all-features -- -Dwarnings - name: Check format run: cargo fmt --all -- --check