From 2a1787ed221c6c8bea8a346be3701ee8e7d967f4 Mon Sep 17 00:00:00 2001 From: curquiza Date: Thu, 19 Jan 2023 17:25:21 +0100 Subject: [PATCH] Add --all in test CI --- .github/workflows/rust.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f5d54029b..f88379e25 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -37,12 +37,12 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --locked --release --no-default-features + args: --locked --release --no-default-features --all - name: Run cargo test uses: actions-rs/cargo@v1 with: command: test - args: --locked --release + args: --locked --release --all test-others: name: Tests on ${{ matrix.os }} @@ -59,12 +59,12 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --locked --release --no-default-features + args: --locked --release --no-default-features --all - name: Run cargo test uses: actions-rs/cargo@v1 with: command: test - args: --locked --release + args: --locked --release --all # We run tests in debug also, to make sure that the debug_assertions are hit test-debug: @@ -89,7 +89,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: test - args: --locked + args: --locked --all clippy: name: Run Clippy