From 1a560434d4028edce9998970f5dd3d75221dcc99 Mon Sep 17 00:00:00 2001 From: Aram Peres Date: Sat, 25 Jun 2022 10:39:44 -0400 Subject: [PATCH] Fix cargo check action --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 01fafed..a1c4af2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,8 @@ jobs: - name: Run cargo check without default features uses: actions-rs/cargo@v1 with: - command: check --no-default-features + command: check + args: --no-default-features test: name: Test Suite