From 6bba968897c68f810b32c38d43a00eb85d8196c9 Mon Sep 17 00:00:00 2001 From: steven-omaha <35634100+steven-omaha@users.noreply.github.com> Date: Mon, 1 Apr 2024 13:58:21 +0200 Subject: [PATCH] ci: build, clippy for all features --- .github/workflows/check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index c0987be..94c7ffa 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -31,7 +31,7 @@ jobs: image: archlinux steps: - name: Install Packages - run: pacman -Syu git rust clang gcc libarchive pkgconf --noconfirm --needed + run: pacman -Syu git rust clang gcc libarchive pkgconf apt --noconfirm --needed - name: Checkout uses: actions/checkout@v3 @@ -40,10 +40,10 @@ jobs: run: cargo fmt -- --check - name: Build - run: cargo build --locked --features arch + run: cargo build --locked --features arch,debian - name: Clippy - run: cargo clippy -- -Dwarnings + run: cargo clippy --features arch,debian -- -Dwarnings - name: Test run: cargo test --workspace