Added clippy to workflow

This commit is contained in:
Xithrius 2021-09-25 00:20:02 -07:00
parent 36276ecb56
commit ebc90f12d1
No known key found for this signature in database
GPG Key ID: BD0FC909FA912B62

View File

@ -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