From 06ed3ccd1773a34907d9cbedab9fe3fbce3f0006 Mon Sep 17 00:00:00 2001 From: Konstantin Gribov Date: Tue, 26 Jan 2021 21:50:52 +0300 Subject: [PATCH] Split args in ci/build-linux and ci/build-macos --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0cd8af1..5c35fb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,8 @@ jobs: - name: Run cargo build uses: actions-rs/cargo@v1 with: - command: build --verbose + command: build + args: --verbose build-macos: name: Build on MacOS with Rust ${{ matrix.rust }} @@ -94,4 +95,5 @@ jobs: - name: Build uses: actions-rs/cargo@v1 with: - command: build --verbose + command: build + args: --verbose