From 0718e9a3b27356f99c5ac215d63b7e625e137e0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20=C3=9Cst=C3=BCn?= Date: Thu, 1 Feb 2024 10:26:52 +0300 Subject: [PATCH] Fix CI dependency error on Ubuntu --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index affb1d9..43f5943 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,9 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Install dependencies (Ubuntu) + if: matrix.os == 'ubuntu-latest' + run: sudo apt-get update && sudo apt-get install -y libxdp-dev - name: Setup Rust Toolchain uses: actions-rust-lang/setup-rust-toolchain@v1 - name: Check formatting