From 97bf71422a558c332a7a4056416d13ad83b5858d Mon Sep 17 00:00:00 2001 From: John Mitchell <6656977+StarArawn@users.noreply.github.com> Date: Sat, 29 Apr 2023 16:31:07 -0400 Subject: [PATCH] Attempting to fix clippy again. --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 4ad5a80..ce98dbd 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -30,7 +30,7 @@ jobs: target/ key: ${{ runner.os }}-cargo-build-stable-${{ hashFiles('**/Cargo.toml') }} - name: Install alsa and udev - run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev + run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev if: runner.os == 'linux' - name: Build run: cargo build --verbose --workspace --features "bevy/x11" @@ -39,4 +39,4 @@ jobs: - name: Run fmt check run: cargo fmt --all -- --check - name: Run clippy - run: cargo clippy --no-deps -- -D warnings --features "bevy/x11" + run: cargo clippy --workspace --all-targets --all-features --features "bevy/x11" -- GitLab