From 32ae092d236a32b2b329c0c1d4c527a4b264f908 Mon Sep 17 00:00:00 2001 From: Jekabs Aizpurvs Date: Tue, 27 Aug 2024 16:00:56 +0800 Subject: [PATCH] Tests fixes --- .github/workflows/integration-test.yml | 2 ++ .github/workflows/phpstan.yml | 2 ++ .github/workflows/unit-test.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 8a59ec7..4c5de7a 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -7,6 +7,8 @@ on: push jobs: build: strategy: + fail-fast: false + max-parallel: 2 # This Matrix will run the tests on PHP 7.0, 7.1 and 7.2 and on Magento 2.2.11 and 2.3.5-p1. # Magento 2.3.5-p1 requires PHP 7.1 and higher, so PHP 7.0 is disabled for this version. # Magento 2.2.11 supports PHP up to version 7.1, so PHP 7.2 is disabled for this version. diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index b06a987..65ea8f2 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -7,6 +7,8 @@ on: push jobs: build: strategy: + fail-fast: false + max-parallel: 2 # This Matrix will run the tests on PHP 7.0, 7.1 and 7.2 and on Magento 2.2.11 and 2.3.5-p1. # Magento 2.3.5-p1 requires PHP 7.1 and higher, so PHP 7.0 is disabled for this version. # Magento 2.2.11 supports PHP up to version 7.1, so PHP 7.2 is disabled for this version. diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 0d6810c..68d7db0 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -7,6 +7,8 @@ on: push jobs: build: strategy: + fail-fast: false + max-parallel: 2 # This Matrix will run the tests on PHP 7.0, 7.1 and 7.2 and on Magento 2.2.11 and 2.3.5-p1. # Magento 2.3.5-p1 requires PHP 7.1 and higher, so PHP 7.0 is disabled for this version. # Magento 2.2.11 supports PHP up to version 7.1, so PHP 7.2 is disabled for this version.