From 6a395639675b6c572e99f26b08216698d132488c Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 24 Feb 2021 02:51:44 +0000 Subject: [PATCH] fmt minimal --- .github/workflows/clippy-fmt.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clippy-fmt.yml b/.github/workflows/clippy-fmt.yml index e966fa4a..3bef81db 100644 --- a/.github/workflows/clippy-fmt.yml +++ b/.github/workflows/clippy-fmt.yml @@ -14,8 +14,10 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: stable + profile: minimal components: rustfmt - - name: Check with rustfmt + override: true + - name: Rustfmt Check uses: actions-rs/cargo@v1 with: command: fmt @@ -30,9 +32,10 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: stable + profile: minimal components: clippy override: true - - name: Check with Clippy + - name: Clippy Check uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }}