From 2771081064ac251ee4b43036ef4171a0ac425bff Mon Sep 17 00:00:00 2001 From: Raul Victor Trombin Date: Tue, 26 Mar 2024 16:24:07 -0300 Subject: [PATCH] test libudev --- .github/workflows/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index c80b3bcc4..d45ad25bb 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -11,6 +11,8 @@ jobs: with: toolchain: stable override: true + - name: Install libudev + run: sudo apt-get update && sudo apt-get install libudev-dev - name: Check Type run: cargo fmt -- --check - name: Run internal tests @@ -22,6 +24,8 @@ jobs: needs: quick-tests runs-on: ubuntu-22.04 steps: + - name: Install libudev + run: sudo apt-get update && sudo apt-get install libudev-dev - uses: actions/checkout@master - uses: actions-rs/toolchain@v1.0.6 with: