Skip to content

feat: allow symfony 7 #92

feat: allow symfony 7

feat: allow symfony 7 #92

Workflow file for this run

name: Build
on:
pull_request: ~
push: ~
jobs:
check:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
- name: Validate composer.json
run: composer validate --strict --no-check-lock
tests:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
- description: 'No Symfony specified'
php: '7.4'
- description: 'Lowest deps'
php: '7.4'
composer_option: '--prefer-lowest'
env:
SYMFONY_DEPRECATIONS_HELPER: max[self]=0
- description: 'PHP 8.0'
php: '8.0'
- description: 'PHP 8.1'
php: '8.1'
- description: 'PHP 8.2'
php: '8.2'
- description: 'PHP 8.3'
php: '8.3'
- description: 'Dev deps'
php: '8.2'
dev: true
name: PHP ${{ matrix.php }} tests (${{ matrix.description }})
steps:
- name: Checkout
uses: actions/checkout@v3
- run: |
phpenv config-rm xdebug.ini || true
composer global config --no-plugins allow-plugins.symfony/flex true
composer global require --no-progress --no-scripts --no-plugins symfony/flex 1.*
- name: Cache
uses: actions/cache@v3
with:
path: ~/.composer/cache/files
key: composer-${{ matrix.php }}-${{ matrix.symfony }}-${{ matrix.composer_option }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- run: |
sed -ri 's/"symfony\/(.+)": "(.+)"/"symfony\/\1": "'${{ matrix.symfony }}'"/' composer.json;
if: matrix.symfony
- run: composer config minimum-stability dev && composer config prefer-stable true
if: matrix.dev
- run: composer update --no-interaction --no-progress --ansi ${{ matrix.composer_option }}
- run: vendor/bin/simple-phpunit -v