Skip to content

Commit 8664d5c

Browse files
committed
Update the test matrix
1 parent 51bf501 commit 8664d5c

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,11 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
php-version: ['7.4', '8.1', '8.2', '8.3', '8.4' ]
17+
php-version: ['8.1', '8.2', '8.3', '8.4']
1818
dependency-version: [ prefer-stable ]
1919
include:
20-
- { php-version: '7.4', dependency-version: prefer-lowest }
21-
# PHP 8.1 and prefer-lowest result in doctrine/persistence 2.x being used
2220
- { php-version: '8.1', dependency-version: prefer-lowest }
23-
2421
name: PHP ${{ matrix.php-version }} - ${{ matrix.dependency-version }}
25-
2622
steps:
2723
- uses: actions/checkout@v4
2824
- name: Install PHP
@@ -31,8 +27,6 @@ jobs:
3127
php-version: ${{ matrix.php-version }}
3228
coverage: none
3329
- name: Install dependencies
34-
run: composer update --no-interaction --prefer-dist --${{ matrix.dependency-version}} --no-progress --no-suggest
35-
- name: Allow self-deprecation notices when testing against ORM 2.0
36-
run: composer show | egrep -q 'doctrine/orm\s+2' && echo "SYMFONY_DEPRECATIONS_HELPER=max[self]=9999" >> "$GITHUB_ENV" || true
30+
run: composer update --no-interaction --no-progress --no-suggest --no-scripts --ansi --${{ matrix.dependency-version}}
3731
- name: Run test suite
3832
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)