From 49c01a3c8474c6fa40a3c24bd52718012537985a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20K=C3=B6rner?= Date: Fri, 25 Mar 2022 08:48:04 +0100 Subject: [PATCH] another fix --- .github/workflows/ci.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75dc329..aef4b28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,17 +9,8 @@ jobs: strategy: fail-fast: false matrix: - php: [ 7.2, 7.3, 7.4, 8.0, 8.1 ] + php: [ 7.2, 7.3, 7.4 ] contao: [ 4.9.*, 4.13.* ] - incompatible: [false] - # Incompatible due outdated contao test case - include: - - php: 8.0 - incompatible: true - - php: 8.1 - incompatible: true - - contao: 4.13.* - incompatible: true exclude: - php: 7.2 contao: 4.13.* @@ -40,7 +31,6 @@ jobs: - name: Install the dependencies id: composer-install run: composer require contao/core-bundle:${{ matrix.contao }} --no-interaction - continue-on-error: ${{ incompatible == true }} - name: Run the unit tests if: steps.composer-install.conclusion == 'success' && steps.composer-install.outcome == 'success'