Skip to content

Commit

Permalink
github CI: Run clippy
Browse files Browse the repository at this point in the history
Add a step to the github CI workflow to always run `clippy`. The actual
arguments to `clippy` come from our internal Readyset build.
  • Loading branch information
jasobrown-rs committed Apr 17, 2024
1 parent f5a908b commit de992dc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:

- name: Check format
run: cargo fmt --check

- name: Run clippy
run: cargo clippy --workspace --all-targets --all-features -- -W clippy::disallowed_methods -D warnings

- name: Install cargo-generate-rpm
run: cargo install cargo-generate-rpm
Expand Down

0 comments on commit de992dc

Please sign in to comment.