From 81e2e5fd7de9c4b9ec56e8da2858d566789abff2 Mon Sep 17 00:00:00 2001 From: Adrien Prokopowicz Date: Fri, 29 Mar 2024 06:07:08 +0100 Subject: [PATCH] Fix clippy command to check all targets --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7f91c2f..1529629 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -47,7 +47,7 @@ jobs: - name: Install XCB and GL dependencies if: contains(matrix.os, 'ubuntu') run: sudo apt-get install libx11-xcb-dev libxcb-dri2-0-dev libgl1-mesa-dev libxcb-icccm4-dev libxcursor-dev - - run: cargo clippy --all --all-features -- -D warnings + - run: cargo clippy --workspace --all-targets --all-features -- -D warnings rustfmt: name: Format check