From 3bde37eabf8cbe887bdb1c52baa5d68e9134ceb9 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Sun, 19 Jul 2020 23:08:56 +0300 Subject: [PATCH] ci: replace deprecated --workspace with --all --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 719fcd27c..e0e7aa90d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,11 +80,10 @@ jobs: uses: actions-rs/cargo@v1 with: command: check - args: --workspace --all --bins --examples --tests + args: --all --bins --examples --tests - name: tests uses: actions-rs/cargo@v1 with: command: test - args: --workspace - + args: --all