From a815f69c1cb73c2295b00576d5b1a91e57b3ac55 Mon Sep 17 00:00:00 2001 From: Raul Victor Trombin Date: Thu, 28 Mar 2024 12:27:49 -0300 Subject: [PATCH] github: action: Fix: Install libudev --- .github/workflows/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 0e6b79b7f..35b272020 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -6,6 +6,8 @@ jobs: quick-tests: runs-on: ubuntu-latest 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: @@ -22,6 +24,8 @@ jobs: needs: quick-tests runs-on: ubuntu-latest 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: