Add --yes to apt-get install

This commit is contained in:
Daniel Lynn 2024-07-21 22:28:08 -05:00
parent 8c3baa3823
commit 343cd30d80
Signed by: daniel
GPG Key ID: 655C07B9B3DDC88B

View File

@ -31,7 +31,7 @@ jobs:
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install Dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
run: sudo apt-get update; sudo apt-get install --yes --no-install-recommends libasound2-dev libudev-dev
- name: Run cargo test
run: cargo test
@ -58,7 +58,7 @@ jobs:
with:
components: clippy
- name: Install Dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
run: sudo apt-get update; sudo apt-get install --yes --no-install-recommends libasound2-dev libudev-dev
- name: Run clippy
run: cargo clippy -- -D warnings