From 2d21777c73951d1fa22d8ae674bcbbf5bb21cdbb Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 27 Nov 2025 12:30:10 +0100 Subject: [PATCH] install libudev-dev for CI --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab84b05..1be0809 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,7 @@ jobs: - uses: dtolnay/rust-toolchain@stable - name: Install nextest uses: taiki-e/install-action@nextest + - run: sudo apt update && sudo apt install -y libudev-dev - run: cargo nextest run --all-features - run: cargo test --doc --all-features @@ -67,4 +68,5 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: components: clippy + - run: sudo apt update && sudo apt install -y libudev-dev - run: cargo clippy -- -D warnings