From 4d91330baf56eca6632c0cb0e74032bde751acf5 Mon Sep 17 00:00:00 2001 From: Tom Mitchell Date: Mon, 13 Sep 2021 11:29:47 -0400 Subject: [PATCH] Prevent failing build jobs from canceling other jobs Use strategy.fail-fast = false to avoid having one failing jobs terminate the other jobs. We'd like to know if some would pass, rather than seeing everything as failed. --- .github/workflows/python-package.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 7e08675..239b324 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -13,6 +13,8 @@ jobs: build: runs-on: ubuntu-latest strategy: +# When set to true, GitHub cancels all in-progress jobs if any matrix job fails. Default: true + fail-fast: false matrix: # Default builds are on Ubuntu os: [ubuntu-latest]