From 73a27f7306d8cfa317541958b6ac2f91392cba28 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Wed, 24 Feb 2021 12:24:52 +0100 Subject: [PATCH] [TASK] Always run all CI jobs (#205) Even if a job fails with e.g., a certain PHP version, we still want to know if it succeeds with which other PHP versions. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f03400..e02be0a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,7 @@ jobs: - name: "Run PHP lint" run: "composer ci:php:lint" strategy: + fail-fast: false matrix: php-version: - 7.2 @@ -53,6 +54,7 @@ jobs: - name: "Run command" run: "composer ci:${{ matrix.command }}" strategy: + fail-fast: false matrix: command: - "ts:lint" @@ -68,6 +70,7 @@ jobs: name: "Code quality frontend checks" runs-on: ubuntu-20.04 strategy: + fail-fast: false matrix: command: - "style" @@ -134,6 +137,7 @@ jobs: - name: "Run unit tests" run: "composer ci:tests:unit" strategy: + fail-fast: false matrix: composer-dependencies: - highest @@ -193,6 +197,7 @@ jobs: export typo3DatabasePassword="root"; composer ci:tests:functional strategy: + fail-fast: false matrix: composer-dependencies: - highest