From 4c95391f5ac2483e90a9c62933855921dcf31632 Mon Sep 17 00:00:00 2001 From: Joel Wachsler Date: Sun, 10 Jul 2022 15:45:55 +0000 Subject: [PATCH] Move args --- .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 925c018..e6b5095 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,8 @@ jobs: - name: Run cargo clippy uses: actions-rs/cargo@v1 with: - command: clippy --D warnings + command: clippy + args: --D warnings test: runs-on: ubuntu-22.04 services: @@ -39,5 +40,6 @@ jobs: - name: Run tests uses: actions-rs/cargo@v1 with: - command: test --workspace + command: test + args: --workspace \ No newline at end of file