From 4faf414d22ab8a761a0c0cb2549209430365e91f Mon Sep 17 00:00:00 2001 From: genusistimelord Date: Thu, 27 Jun 2024 16:40:34 -0400 Subject: [PATCH] add iced cargo lints in place of clippy --- .github/workflows/clippy.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 10c417a1..75476b79 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -9,5 +9,10 @@ jobs: rust-version: stable components: clippy - uses: actions/checkout@master - - name: Lint with clippy - run: cargo clippy --all -- -D warnings --verbose + - name: Install dependencies + run: | + export DEBIAN_FRONTED=noninteractive + sudo apt-get -qq update + sudo apt-get install -y libxkbcommon-dev libgtk-3-dev + - name: Check lints + run: cargo lint