-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #400 from thephpleague/feat/phpunit-11
Add support for PHPUnit 11
- Loading branch information
Showing
4 changed files
with
73 additions
and
70 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 |
---|---|---|
@@ -1,74 +1,79 @@ | ||
name: glide | ||
|
||
on: | ||
pull_request: ~ | ||
push: | ||
branches: | ||
- 3.x | ||
pull_request: ~ | ||
push: | ||
branches: | ||
- 3.x | ||
|
||
jobs: | ||
coding-style: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.3' | ||
extensions: gd, imagick | ||
- name: php-cs-fixer | ||
run: | | ||
composer update --no-interaction --no-ansi --no-progress | ||
vendor/bin/php-cs-fixer fix --dry-run --diff | ||
tests: | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php-version: ['8.1', '8.2', '8.3', '8.4'] | ||
dependencies: [highest] | ||
include: | ||
- php-version: '8.1' | ||
dependencies: lowest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
tests: | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php-version: ['8.1', '8.2', '8.3', '8.4'] | ||
prefer-lowest: [''] | ||
include: | ||
- php-version: '8.1' | ||
prefer-lowest: 'prefer-lowest' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
extensions: gd, imagick | ||
coverage: pcov | ||
|
||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
extensions: gd, imagick | ||
coverage: pcov | ||
- name: Composer install | ||
uses: ramsey/composer-install@v3 | ||
with: | ||
dependency-versions: ${{ matrix.dependencies }} | ||
|
||
- name: Composer | ||
run: | | ||
if ${{ matrix.prefer-lowest == 'prefer-lowest' }}; then | ||
composer update --no-interaction --no-ansi --no-progress --prefer-lowest | ||
else | ||
composer update --no-interaction --no-ansi --no-progress | ||
fi | ||
- name: PHPUnit | ||
run: | | ||
if [[ ${{ matrix.php-version }} == '8.3' ]]; then | ||
vendor/bin/phpunit --display-incomplete --display-skipped --display-deprecations --display-phpunit-deprecations --coverage-clover=coverage.xml | ||
else | ||
vendor/bin/phpunit | ||
fi | ||
- name: PHPUnit | ||
run: | | ||
if [[ ${{ matrix.php-version }} == '8.3' ]]; then | ||
vendor/bin/phpunit --display-incomplete --display-skipped --coverage-clover=coverage.xml | ||
else | ||
vendor/bin/phpunit | ||
fi | ||
- name: Code Coverage Report | ||
if: matrix.php-version == '8.3' | ||
uses: codecov/codecov-action@v3 | ||
|
||
- name: Code Coverage Report | ||
if: matrix.php-version == '8.3' | ||
uses: codecov/codecov-action@v3 | ||
coding-style: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
psalm: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.3' | ||
extensions: gd, imagick | ||
tools: vimeo/psalm:5 | ||
- name: psalm | ||
run: | | ||
composer update --no-interaction --no-ansi --no-progress | ||
psalm --output-format=github | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.3' | ||
extensions: gd, imagick | ||
|
||
- name: Composer install | ||
uses: ramsey/composer-install@v3 | ||
|
||
- name: php-cs-fixer | ||
run: | | ||
vendor/bin/php-cs-fixer fix --dry-run --diff | ||
psalm: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.3' | ||
extensions: gd, imagick | ||
tools: vimeo/psalm:5 | ||
|
||
- name: Composer install | ||
uses: ramsey/composer-install@v3 | ||
|
||
- name: psalm | ||
run: | | ||
psalm --output-format=github |
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