From 88aca4f0f0c2258ce76ebb0662fd5230105aa7e1 Mon Sep 17 00:00:00 2001 From: tbro Date: Thu, 19 Dec 2024 17:36:20 -0300 Subject: [PATCH] add `--keep-going` to lint --- .github/workflows/lint.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 31067da01..66fb4aeca 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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