From 6ba1ab9e446556a8b2f85e33fefb2bf68808ac28 Mon Sep 17 00:00:00 2001 From: Chris Glass Date: Fri, 10 Apr 2026 19:10:56 +0200 Subject: [PATCH] Update the clippy github action to install deps Unlike cargo format, clippy needs to actually build the project. --- .github/workflows/rust-checks.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/rust-checks.yml b/.github/workflows/rust-checks.yml index c3032c0..c4a8f91 100644 --- a/.github/workflows/rust-checks.yml +++ b/.github/workflows/rust-checks.yml @@ -32,6 +32,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Install system dependencies + run: | + sudo apt-get update + sudo apt-get install -y pkg-config libxkbcommon-dev libfontconfig1-dev libfreetype6-dev libglvnd-dev libinput-dev libvulkan-dev libwayland-dev libx11-dev libxcursor-dev libxi-dev libxrandr-dev libasound2-dev libdbus-1-dev + - name: Install Rust uses: dtolnay/rust-toolchain@stable with: