Skip to content

Commit

Permalink
Install alsa in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
joajfreitas committed Aug 26, 2024
1 parent c4c7fe8 commit 3d1fd31
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3d1fd31

Please sign in to comment.