-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade PHPUnit and add PHP 8.4 to CI (#134)
* Upgrade PHPUnit and add PHP 8.4 to CI * Remove unnecessary conflicts * Use prophecy trait * Add PHPUnit bridge * Use prophecy-phpunit 2 * Update phpunit file * Update PHPUnit * Move lint to own CI task * Add CI for lowest version * Move phpstan config from composer.json to phpstan.neon file * Update lowest task * Fix lowest CI * Remove not longer required gedmo hack
- Loading branch information
1 parent
ca49c52
commit fbd753e
Showing
18 changed files
with
151 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,17 +13,27 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
env: | ||
DATABASE_URL: mysql://root:[email protected]:3306/sulu_test?serverVersion=5.7 | ||
DATABASE_URL: mysql://root:[email protected]:3306/sulu_test?serverVersion=8.0 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- php-version: '7.4' | ||
dependency-versions: 'lowest' | ||
php-extensions: 'ctype, iconv, mysql, imagick' | ||
tools: 'composer:v2' | ||
lint: false | ||
phpunit-config: 'phpunit-9.xml.dist' | ||
env: | ||
SYMFONY_DEPRECATIONS_HELPER: weak | ||
|
||
- php-version: '7.4' | ||
dependency-versions: 'highest' | ||
php-extensions: 'ctype, iconv, mysql, imagick' | ||
tools: 'composer:v2' | ||
lint: false | ||
phpunit-config: 'phpunit-9.xml.dist' | ||
env: | ||
SYMFONY_DEPRECATIONS_HELPER: weak | ||
|
||
|
@@ -55,6 +65,14 @@ jobs: | |
lint: true | ||
env: | ||
SYMFONY_DEPRECATIONS_HELPER: weak | ||
- php-version: '8.4' | ||
dependency-versions: 'highest' | ||
composer-options: '--ignore-platform-reqs' | ||
php-extensions: 'ctype, iconv, mysql, imagick' | ||
tools: 'composer:v2' | ||
lint: true | ||
env: | ||
SYMFONY_DEPRECATIONS_HELPER: weak | ||
|
||
services: | ||
mysql: | ||
|
@@ -67,7 +85,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install and configure PHP | ||
uses: shivammathur/setup-php@v2 | ||
|
@@ -77,20 +95,51 @@ jobs: | |
tools: ${{ matrix.tools }} | ||
coverage: none | ||
|
||
- name: Allow old composer plugin | ||
run: composer config --no-plugins allow-plugins.ocramius/package-versions true # todo remove when not longer required for lowest task | ||
|
||
- name: Remove Lint Tools | ||
# These tools are not required to run tests, so we are removing them to improve dependency resolving and | ||
# testing lowest versions. | ||
run: composer remove "*php-cs-fixer*" "*phpstan*" "*rector*" --dev --no-update | ||
|
||
- name: Install composer dependencies | ||
uses: ramsey/composer-install@v2 | ||
with: | ||
dependency-versions: ${{matrix.dependency-versions}} | ||
composer-options: ${{matrix.composer-options}} | ||
|
||
- name: Bootstrap test environment | ||
run: composer initialize | ||
env: ${{ matrix.env }} | ||
|
||
- name: Lint code | ||
if: ${{ matrix.lint }} | ||
run: composer lint | ||
env: ${{ matrix.env }} | ||
|
||
- name: Execute test cases | ||
run: time composer test | ||
run: time composer test -- --config ${{ matrix.phpunit-config || 'phpunit.xml.dist' }} | ||
env: ${{ matrix.env }} | ||
|
||
lint: | ||
name: "PHP Lint" | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
DATABASE_URL: mysql://root:[email protected]:3306/sulu_test?serverVersion=8.0 | ||
|
||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install and configure PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.3 | ||
extensions: 'ctype, iconv, mysql, imagick' | ||
tools: 'composer:v2' | ||
coverage: none | ||
|
||
- name: Install composer dependencies | ||
uses: ramsey/composer-install@v2 | ||
with: | ||
dependency-versions: highest | ||
|
||
- name: Lint code | ||
run: composer lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.