diff options
| author | Nam4ik <alive6863@gmail.com> | 2025-11-16 12:38:00 +0300 |
|---|---|---|
| committer | Nam4ik <alive6863@gmail.com> | 2025-11-16 12:38:00 +0300 |
| commit | e2170663e387957976df943670411024a763da9d (patch) | |
| tree | 55ff2a96d8083ff25bbfe593ef5720a62f4765a7 /.github/workflows | |
| parent | 2b3b8456e1fe5fdc691e38dd557f457cc03cb556 (diff) | |
Added dependencies to workflow
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/rust.yml | 4 |
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 |
