From b6acff729a9ced8ffb1a5897fb44194d51bdd514 Mon Sep 17 00:00:00 2001 From: AkiyukiOkayasu Date: Sat, 17 Aug 2024 00:03:08 +0900 Subject: [PATCH] update ci --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4520a8..2c683ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: toolchain: - stable @@ -35,7 +36,7 @@ jobs: - name: Build run: cargo build --verbose - name: Clippy - run: cargo clippy --all-targets --all-features + run: cargo clippy --all-targets --all-features -- -D warnings - name: Run tests run: cargo test --verbose - name: Run examples