From f1461e18658783d0bf164ea024843041e85f9574 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20S=C3=A1nchez-Gallego?= Date: Mon, 10 Jun 2024 13:26:51 -0600 Subject: [PATCH] Set fail-fast to false in the strategy matrix --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 786b895..754ce40 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,10 +10,10 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: python-version: ['3.9', '3.10', '3.11', '3.12'] - steps: - name: Clone access uses: actions/checkout@v4 @@ -26,7 +26,7 @@ jobs: repository: sdss/tree path: tree - - name: Set up Python 3.9 + - name: Set up Python uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }}