Skip to content

Commit

Permalink
ci: add "Install alsa and udev"
Browse files Browse the repository at this point in the history
  • Loading branch information
tguichaoua committed Aug 11, 2023
1 parent 0f48e61 commit 557e8d2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
if: runner.os == 'linux'
- name: No features
run: cargo check --no-default-features
- name: All features
Expand All @@ -29,6 +32,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
if: runner.os == 'linux'
- run: cargo test --all-features

fmt:
Expand Down

0 comments on commit 557e8d2

Please sign in to comment.