Add cargo clippy step to CI

This commit is contained in:
Peter McEvoy 2023-03-14 11:37:12 -04:00
parent b60100c806
commit a7807fd50f

View File

@ -20,6 +20,9 @@ jobs:
- name: Format
run: cargo fmt --check
- name: Lint
run: cargo clippy -- --deny warnings
- name: Build
run: cargo build --verbose