From: Dan Rose Date: Tue, 8 Jul 2025 16:51:13 +0000 (-0500) Subject: CI: run clippy even if fmt fails X-Git-Tag: v0.10.0~38^2 X-Git-Url: https://git.sagredo.dev/?a=commitdiff_plain;h=2dc66d33dde68570244e93b47eb5cbe503e30792;p=scryer-prolog.git CI: run clippy even if fmt fails --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70f8d1a2..0a999c92 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,7 @@ jobs: run: cargo fmt --check - name: Check clippy run: cargo clippy --no-deps --all-targets + if: ${{ !cancelled() }} build-test: runs-on: ${{ matrix.os }}