From a7c19c069b543a4ad3943758e7d1291bc701f576 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Fri, 2 Jul 2021 17:37:19 +0200 Subject: [PATCH] GH Actions: test run - remove "dependency version" matrix key Running against stable/lowest dependencies is relevant when a package has runtime (non-dev) dependencies. However, PHPMailer does not have runtime dependencies. In other words, the `dependency-version` matrix key is redundant and unused, so we may as well remove it. --- .github/workflows/tests.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f2388657..5f6e7acc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -39,15 +39,13 @@ jobs: strategy: matrix: php: ['5.5', '5.6', '7.0.', '7.1', '7.2', '7.3', '7.4', '8.0'] - dependency-version: [prefer-stable] experimental: [false] include: # Experimental builds. These are allowed to fail. - php: '8.1' - dependency-version: 'prefer-stable' experimental: true - name: P${{ matrix.php }} - ${{ matrix.dependency-version }} + name: PHP ${{ matrix.php }} continue-on-error: ${{ matrix.experimental }}