build: install dbus-dev
All checks were successful
Test / build (map[name:nightly]) (push) Successful in 5m45s
Test / build (map[name:stable]) (push) Successful in 5m45s
Release Please / Release-plz (push) Successful in 47s
Release Please / Docker image (push) Successful in 3m35s

This commit is contained in:
Paul Campbell 2025-01-16 14:51:09 +00:00
parent b188f874d7
commit 82d953ed3d

View file

@ -42,6 +42,12 @@ jobs:
- name: Format - name: Format
run: cargo +${{ matrix.toolchain.name }} fmt --all --check run: cargo +${{ matrix.toolchain.name }} fmt --all --check
- name: Install dbus-dev
run: |
if [ -f "$(which apk)" ] && [ -x "$(which apk)" ]; then
apk add dbus-dev
fi
- name: Clippy - name: Clippy
run: cargo +${{ matrix.toolchain.name }} hack --feature-powerset clippy run: cargo +${{ matrix.toolchain.name }} hack --feature-powerset clippy