Skip to content

Commit 0ff4d97

Browse files
committed
GH Actions: remove testing against lowest
1 parent c89f65b commit 0ff4d97

File tree

1 file changed

+1
-18
lines changed

1 file changed

+1
-18
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,8 @@ jobs:
3535
fail-fast: false
3636
matrix:
3737
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
38-
dependency-versions: ['highest']
3938

40-
include:
41-
- php: '7.3'
42-
dependency-versions: 'lowest'
43-
- php: '7.4'
44-
dependency-versions: 'lowest'
45-
- php: '8.0'
46-
dependency-versions: 'lowest'
47-
- php: '8.1'
48-
dependency-versions: 'lowest'
49-
50-
name: PHP ${{ matrix.php }} - ${{ matrix.dependency-versions }}
39+
name: PHP ${{ matrix.php }}
5140

5241
steps:
5342
- name: Checkout code
@@ -60,16 +49,10 @@ jobs:
6049
ini-values: zend.assertions=1, error_reporting=-1, display_errors=On
6150
coverage: xdebug
6251

63-
- name: 'Composer: update PHPUnit for testing lowest'
64-
if: ${{ matrix.dependency-versions == 'lowest' }}
65-
run: composer require --no-update phpunit/phpunit:"^9.1"
66-
6752
# Install dependencies and handle caching in one go.
6853
# @link https://github.com/marketplace/actions/install-composer-dependencies
6954
- name: Install Composer dependencies
7055
uses: "ramsey/composer-install@v1"
71-
with:
72-
dependency-versions: ${{ matrix.dependency-versions }}
7356

7457
- name: Execute Unit Tests
7558
run: vendor/bin/phpunit --coverage-text

0 commit comments

Comments
 (0)