From be1f8c0325fda1e551769d289f8dcc38ae13c678 Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Fri, 25 Oct 2019 09:14:14 +0200 Subject: [PATCH] Update ci.yml --- .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 1db785275a..14d24b38cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,16 +33,16 @@ jobs: - name: Check formatting uses: actions-rs/cargo@v1 with: - cmd: fmt + command: fmt args: --all -- --check - name: Build debug uses: actions-rs/cargo@v1 with: - cmd: build + command: build - name: Build release uses: actions-rs/cargo@v1 with: - cmd: build + command: build args: --release test: @@ -70,5 +70,5 @@ jobs: - name: Run tests uses: actions-rs/cargo@v1 with: - cmd: test + command: test args: --all --features wasm_tests