From ebc90f12d160188c0d2a0660075a0341f9c8f9bd Mon Sep 17 00:00:00 2001 From: Xithrius Date: Sat, 25 Sep 2021 00:20:02 -0700 Subject: [PATCH] Added clippy to workflow --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 321dd1e..3e5801c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,6 +50,10 @@ jobs: rustup update stable rustup default stable rustup component add rustfmt + rustup component add clippy - - name: Check Formatting + - name: Check formatting run: cargo fmt --all -- --check + + - name: Check code for possible improvements + run: cargo clippy -- -D warnings