From 3d1fd31e950ede09bf03fa22cb63de08020e2a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Freitas?= Date: Mon, 26 Aug 2024 21:25:56 +0100 Subject: [PATCH] Install alsa in ci --- .github/workflows/main.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6ef4a09..ad5bd6a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,11 @@ jobs: - name: Run rustfmt run: cargo fmt --check - name: Unit tests - run: cargo test -- --include-ignored --nocapture + + run: | + sudo apt update -y; + sudo apt install -y libasound2-dev; + cargo test -- --include-ignored --nocapture - name: Clippy run: cargo clippy --all-features