summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 73f2e0a..1ba5cbd 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -23,7 +23,9 @@ jobs:
- name: Cache Cargo dependencies
uses: Swatinem/rust-cache@v2
- name: Build
- run: cargo build --verbose
+ run: |
+ apt install -y libx11-dev alsa-lib
+ cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run Clippy