-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(alsa-error): install libasound2-dev
- Loading branch information
1 parent
f58b57c
commit 9724e78
Showing
2 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,17 +15,13 @@ jobs: | |
uses: actions/[email protected] | ||
- name: Use the rust-toolchain | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
- name: Install dependencies | ||
shell: bash | ||
run: | | ||
sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 | ||
- name: Check fmt | ||
uses: actions-rust-lang/rustfmt@v1 | ||
- name: Check clippy | ||
run: cargo clippy | ||
test: | ||
name: cargo test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Use the rust-toolchain | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
- name: cargo test | ||
- name: Check test | ||
run: cargo test --all-features |