From bc4c6489ff8ae27624b13281ef2b451f96fcbe5c Mon Sep 17 00:00:00 2001 From: Lennart <18233294+lennart-k@users.noreply.github.com> Date: Sun, 21 Sep 2025 20:59:25 +0200 Subject: [PATCH] ci: Make sure whole workspace is tested --- .github/workflows/cicd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 79d5a87..ca70da0 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -19,7 +19,7 @@ jobs: uses: actions-rs/cargo@v1 continue-on-error: false with: - command: check + command: check --workspace test: name: Test Suite @@ -39,7 +39,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: test - args: --all-features + args: --all-features --verbose --workspace coverage: name: Test Coverage