Skip to content

Commit

Permalink
add --keep-going to lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tbro committed Dec 19, 2024
1 parent 60f1427 commit 88aca4f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ jobs:
run: cargo fmt -- --check

- name: Check (embedded-db)
run: cargo clippy --workspace --features "embedded-db testing" --all-targets -- -D warnings
run: |
cargo clippy --workspace --features "embedded-db testing" --all-targets --keep-going \
-- -D warnings
- name: Check (postgres)
run: cargo clippy --workspace --features testing --all-targets -- -D warnings
run: |
cargo clippy --workspace --features testing --all-targets --keep-going \
-- -D warnings

0 comments on commit 88aca4f

Please sign in to comment.