From fb13543e4469bbfd90406c26e84e2e5426234c4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sch=C3=B6nauer?= <37108907+DottoDev@users.noreply.github.com> Date: Wed, 2 Nov 2022 14:54:52 +0000 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec128f83..ed30643f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,11 +19,21 @@ jobs: profile: minimal override: true components: rustfmt, clippy + - uses: actions-rs/cargo@v1.0.1 + name: Check format + with: + command: fmt + args: --all -- --check + - uses: actions-rs/cargo@v1.0.1 + name: Run clippy + with: + command: clippy + args: --all-targets --locked -- -D warnings - uses: actions-rs/cargo@v1.0.1 name: Run clippy (All features) with: command: clippy - args: --all-targets --locked --all-features + args: --all-targets --locked --all-features -- -D warnings - uses: actions-rs/cargo@v1.0.1 name: Run tests with: