From a46c4d8a0aded263707e741cbcb9b0a6a00c6429 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 3 Mar 2021 22:49:52 +0000 Subject: [PATCH] CI: Remove unnecessary --all flag We aren't in a workspace here. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c8a4f0..859e8bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: test - args: --verbose --release --all --all-features + args: --verbose --release --all-features build: name: Build target ${{ matrix.target }} @@ -62,7 +62,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --all --benches --all-features + args: --benches --all-features book: name: Book tests @@ -171,7 +171,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: doc - args: --all --document-private-items + args: --document-private-items fmt: name: Rustfmt @@ -187,4 +187,4 @@ jobs: - uses: actions-rs/cargo@v1 with: command: fmt - args: --all -- --check + args: -- --check