From 4e0b09feea23eb84dbe5b6dad8d488e91312fc64 Mon Sep 17 00:00:00 2001 From: Jakub Panek Date: Wed, 24 Aug 2022 22:43:32 +0100 Subject: [PATCH] ci: don't fail other jobs on clippy/rustfmt fail --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e48d92ba..6b14bda0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,6 +50,7 @@ jobs: fmt: name: Rustfmt (${{ matrix.toolchain }}) on ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] toolchain: [ stable ] @@ -78,6 +79,7 @@ jobs: clippy: name: Clippy (${{ matrix.toolchain }}) on ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] toolchain: [ stable ]