From c9655865372ba65879eab6c697ec5bac89df40f4 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Mon, 12 Aug 2024 09:44:35 +0100 Subject: [PATCH] build: test all feature combinations --- .forgejo/workflows/push-next.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.forgejo/workflows/push-next.yml b/.forgejo/workflows/push-next.yml index 20575cf..f35d58f 100644 --- a/.forgejo/workflows/push-next.yml +++ b/.forgejo/workflows/push-next.yml @@ -18,21 +18,21 @@ jobs: uses: actions/checkout@v4 - name: Format - uses: https://git.kemitix.net/kemitix/rust@v1.80.0-2 + uses: https://git.kemitix.net/kemitix/rust@v1.80.1-1 with: - args: cargo fmt --all -- --check + args: cargo hack fmt --feature-powerset --all -- --check - name: Clippy - uses: https://git.kemitix.net/kemitix/rust@v1.80.0-2 + uses: https://git.kemitix.net/kemitix/rust@v1.80.1-1 with: - args: cargo clippy + args: cargo hack clippy --feature-powerset - name: Build - uses: https://git.kemitix.net/kemitix/rust@v1.80.0-2 + uses: https://git.kemitix.net/kemitix/rust@v1.80.1-1 with: - args: cargo build + args: cargo hack build --feature-powerset - name: Test - uses: https://git.kemitix.net/kemitix/rust@v1.80.0-2 + uses: https://git.kemitix.net/kemitix/rust@v1.80.1-1 with: - args: cargo test + args: cargo hack test --feature-powerset