From b3d5f78b8f3ddd36a4fc6568e8a091f947dd0ff5 Mon Sep 17 00:00:00 2001 From: lzutao Date: Sat, 22 Feb 2020 02:38:38 +0700 Subject: [PATCH] actions: Remove --all flag from rustfmt (#795) The --all flag of rustfmt may trigger metadata resolution which maybe slow down formatting in this case. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e3f713..3c171f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: fmt - args: --all -- --check + args: -- --check build: name: ${{ matrix.name }}