PHP 8.4 #21
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
name: "Continuous Integration" | |
on: | |
push: | |
branches: | |
- 0.x | |
pull_request: | |
branches: | |
- 0.x | |
jobs: | |
php-cs-fixer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.4 | |
coverage: none | |
- name: Install dependencies | |
run: | | |
composer install | |
- name: PHP-CS-Fixer | |
run: | | |
vendor/bin/php-cs-fixer fix --dry-run --diff --no-ansi | |
phpstan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.4 | |
coverage: none | |
- name: Install dependencies | |
run: | | |
composer install | |
- name: PHPStan | |
run: | | |
vendor/bin/phpstan analyse | |
phpunit: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Latest Symfony version support | |
- os: ubuntu-latest | |
php_version: "8.4" | |
symfony_version: "7.0" | |
stability: "stable" | |
# LTS Symfony version support | |
- os: ubuntu-latest | |
php_version: "8.4" | |
symfony_version: "5.4" | |
stability: "stable" | |
- os: ubuntu-latest | |
php_version: "8.4" | |
symfony_version: "6.4" | |
stability: "stable" | |
# Lowest deps support | |
- os: ubuntu-latest | |
php_version: "8.1" | |
symfony_version: "5.4" | |
composer_args: "--prefer-lowest" | |
stability: "stable" | |
# Upcoming Symfony versions | |
- os: ubuntu-latest | |
php_version: "8.4" | |
symfony_version: "7.2.x-dev" | |
stability: "dev" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php_version }} | |
coverage: none | |
- name: symfony/flex is required to install the correct symfony version | |
if: ${{ matrix.symfony_version }} | |
run: | | |
composer global config --no-plugins allow-plugins.symfony/flex true | |
composer global require --no-progress --no-scripts --no-plugins symfony/flex | |
- name: Configure Composer stability | |
run: | | |
composer config minimum-stability ${{ matrix.stability }} | |
- name: Configure Symfony version for symfony/flex | |
if: ${{ matrix.symfony_version }} | |
run: composer config extra.symfony.require "${{ matrix.symfony_version }}" | |
- name: Install dependencies | |
run: | | |
composer update --prefer-dist --no-progress ${{ matrix.composer_args }} | |
- name: Test PHPUnit | |
run: | | |
vendor/bin/phpunit |