Update the clippy github action to install deps
Unlike cargo format, clippy needs to actually build the project.
This commit is contained in:
parent
27e2d682a5
commit
6ba1ab9e44
1 changed files with 5 additions and 0 deletions
5
.github/workflows/rust-checks.yml
vendored
5
.github/workflows/rust-checks.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue