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.
This commit is contained in:
jrfnl 2021-07-02 17:37:19 +02:00
parent bc5fe4dc1f
commit a7c19c069b
1 changed files with 1 additions and 3 deletions

View File

@ -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 }}