From 83e32159d3fd884495a81d5246498e0473616a71 Mon Sep 17 00:00:00 2001 From: Julien Moura Date: Fri, 23 Feb 2024 16:12:39 +0100 Subject: [PATCH] ci: disable matrix fail fast --- .github/workflows/tests.yml | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f72f5242..e64c5b54 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,13 +2,15 @@ name: "🎳 Tester" on: push: - branches: [main] + branches: + - main paths: - "**/*.py" - ".github/workflows/tests.yml" pull_request: - branches: [main] + branches: + - main paths: - "**/*.py" - ".github/workflows/tests.yml" @@ -22,9 +24,17 @@ env: jobs: unit-test: strategy: + fail-fast: false + # max-parallel: 4 matrix: - os: [macos-latest, ubuntu-22.04, windows-latest] - python-version: ["3.10", "3.11", "3.12"] + os: + - macos-latest + - ubuntu-22.04 + - windows-latest + python-version: + - "3.10" + - "3.11" + - "3.12" runs-on: ${{ matrix.os }} steps: @@ -66,9 +76,17 @@ jobs: integration-test: strategy: + fail-fast: false + # max-parallel: 4 matrix: - os: [macos-latest, ubuntu-22.04, windows-latest] - python-version: ["3.10", "3.11", "3.12"] + os: + - macos-latest + - ubuntu-22.04 + - windows-latest + python-version: + - "3.10" + - "3.11" + - "3.12" runs-on: ${{ matrix.os }} steps: