From 9143093b9e537bc98fc1435c825bc411d631ddd0 Mon Sep 17 00:00:00 2001 From: Salvatore Ingala <6681844+bigspider@users.noreply.github.com> Date: Wed, 18 Sep 2024 16:55:56 +0200 Subject: [PATCH] Fix CI --- .github/workflows/ci.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 271bdac..ad9291c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -43,6 +43,9 @@ jobs: target: x86_64-unknown-linux-gnu components: rustfmt, clippy profile: minimal + - name: Install libudev-dev and pkg-config + run: | + sudo apt-get update && sudo apt-get install -y libudev-dev pkg-config - name: Clone uses: actions/checkout@v4 - name: Unit tests @@ -97,6 +100,9 @@ jobs: target: x86_64-unknown-linux-gnu components: rustfmt, clippy profile: minimal + - name: Install libudev-dev and pkg-config + run: | + sudo apt-get update && sudo apt-get install -y libudev-dev pkg-config - name: Clone uses: actions/checkout@v4 - name: Unit tests