diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f28d81d..51f836c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: with: toolchain: stable - name: Install alsa and udev - run: apt-get update; apt-get install --no-install-recommends -y libasound2-dev libudev-dev + run: apt-get update; apt-get install --no-install-recommends -y libasound2-dev libudev-dev libwayland-dev if: runner.os == 'linux' - name: Build & run tests run: cargo test @@ -47,7 +47,7 @@ jobs: with: toolchain: stable - name: Install alsa and udev - run: apt-get update; apt-get install --no-install-recommends -y libasound2-dev libudev-dev + run: apt-get update; apt-get install --no-install-recommends -y libasound2-dev libudev-dev libwayland-dev - name: Run doc tests with all features (this also compiles README examples) run: cargo test --doc --all-features lint: @@ -68,7 +68,7 @@ jobs: toolchain: stable components: rustfmt, clippy - name: Install alsa and udev - run: apt-get update; apt-get install --no-install-recommends -y libasound2-dev libudev-dev + run: apt-get update; apt-get install --no-install-recommends -y libasound2-dev libudev-dev libwayland-dev - name: Run clippy run: cargo clippy --workspace --all-targets --all-features -- -Dwarnings - name: Check format