Add tests for PHP 8.4 #225
Workflow file for this run
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: CI | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
jobs: | |
coding-style: | |
name: Coding Style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/[email protected] | |
with: | |
php-version: 8.1 | |
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, pcre, pdo, zlib | |
coverage: none | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install the dependencies | |
run: composer install --no-interaction --no-suggest | |
- name: Check the coding style | |
run: vendor/bin/php-cs-fixer fix --diff --dry-run | |
- name: Analyze the code | |
run: vendor/bin/phpstan analyze --no-progress | |
tests: | |
name: PHP ${{ matrix.php }} / SF ^${{ matrix.symfony }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [8.1, 8.2, 8.3, 8.4] | |
symfony: [5.4, 6.0, 7.0] | |
exclude: | |
- symfony: 7.0 | |
php: 8.0 | |
- symfony: 7.0 | |
php: 8.1 | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/[email protected] | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, pcre, pdo_mysql, zlib | |
coverage: none | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install the dependencies | |
run: | | |
composer require symfony/framework-bundle:^${{ matrix.symfony }} symfony/translation:^${{ matrix.symfony }} symfony/console:^${{ matrix.symfony }} -W | |
composer install --no-interaction --no-suggest | |
- name: Run the unit tests | |
run: vendor/bin/phpunit --colors=always | |
prefer-lowest: | |
name: Prefer Lowest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/[email protected] | |
with: | |
php-version: 8.1 | |
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, pcre, pdo_mysql, zlib | |
coverage: none | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install the dependencies | |
run: composer update --prefer-lowest --prefer-stable --no-interaction --no-suggest | |
- name: Run the unit tests | |
run: vendor/bin/phpunit --colors=always |