diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6ef4a09..896e467 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: | + apt update -y; + apt install -y libasound2; + cargo test -- --include-ignored --nocapture - name: Clippy run: cargo clippy --all-features