allow symfony 7 #36
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: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Test the latest stable release | |
- php-version: '7.1' | |
phpunit-version: 7 | |
- php-version: '7.2' | |
phpunit-version: 8 | |
- php-version: '7.3' | |
phpunit-version: 8 | |
- php-version: '7.4' | |
phpunit-version: 8 | |
- php-version: '8.0' | |
phpunit-version: 9 | |
# Test Symfony LTS versions. Read more at https://github.com/symfony/lts | |
- php-version: '7.4' | |
dependencies: 'symfony/lts:^3' | |
phpunit-version: 8 | |
- php-version: '8.0' | |
phpunit-version: 9 | |
symfony-version: '^4' | |
- php-version: '8.0' | |
phpunit-version: 9 | |
symfony-version: '^5' | |
- php-version: '8.0' | |
phpunit-version: 9 | |
symfony-version: '^6' | |
# Minimum supported dependencies with the oldest PHP version | |
- php-version: '7.1' | |
phpunit-version: 7 | |
composer-flag: '--prefer-stable --prefer-lowest' | |
# Test latest unreleased versions | |
- php-version: '8.0' | |
phpunit-version: 9 | |
symfony-version: '^6' | |
stability: 'dev' | |
- php-version: '8.3' | |
phpunit-version: 9 | |
symfony-version: '^7@dev' | |
stability: 'dev' | |
name: PHP ${{ matrix.php-version }} Test on Symfony ${{ matrix.symfony-version }} ${{ matrix.dependencies}} ${{ matrix.stability }} ${{ matrix.composer-flag }} | |
steps: | |
- name: Pull the code | |
uses: actions/checkout@v2 | |
- name: Install PHP and Composer | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
tools: composer:v2, phpunit:${{ matrix.phpunit-version }} | |
# this flag must be off so that RMT can create a phar | |
ini-values: phar.readonly=off | |
- name: Check PHP Version | |
run: php -v | |
- name: Stability | |
run: composer config minimum-stability ${{ matrix.stability }} | |
if: ${{ matrix.stability }} | |
- name: Additional require | |
run: composer require --no-update ${{ matrix.dependencies }} | |
if: ${{ matrix.dependencies }} | |
- name: Symfony version | |
run: composer require --no-update symfony/flex && composer config extra.symfony.require ${{ matrix.symfony-version}} | |
if: ${{ matrix.symfony-version }} | |
- name: Composer update | |
run: composer update ${{ matrix.composer-flag }} --prefer-dist --no-interaction | |
- name: Composer validate | |
run: composer validate --strict --no-check-lock | |
if: ${{ matrix.stability != 'dev' }} | |
- name: Configure git | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "John Doe" | |
git config --global init.defaultBranch master # TODO: use main, need to adjust tests to match | |
- name: Run tests | |
run: phpunit | |
if: ${{ matrix.stability != 'dev' }} | |
- name: Run tests allow to fail | |
run: phpunit | |
continue-on-error: true | |
if: ${{ matrix.stability == 'dev' }} |