From 0298ce7a74295cd9c2b5f453aca4f2ac34d2cdd9 Mon Sep 17 00:00:00 2001 From: Jelmer Draaijer Date: Tue, 19 Dec 2023 19:30:38 +0100 Subject: [PATCH] Do not fail-fast in github actions --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2a55dbc..a4e514d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,6 +7,7 @@ jobs: name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }} runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: include: - { os: ubuntu-latest, python-version: '3.8' }