Skip to content

feat: Allow Symfony 7 #73

feat: Allow Symfony 7

feat: Allow Symfony 7 #73

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ master ]
# this fixes the input device is not a TTY .. see https://github.com/docker/compose/issues/5696
env:
MYSQL_HOST: '127.0.0.1'
SHELL_VERBOSITY: 1
jobs:
php-cs-fixer:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.2'
dependencies: ['highest']
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: intl, bcmath, curl, openssl, mbstring
ini-values: memory_limit=-1
tools: composer, php-cs-fixer
coverage: none
- name: Run PHP-CS-Fixer fix
run: php-cs-fixer fix --dry-run --diff --ansi
phpunit:
name: PHPUnit (PHP ${{ matrix.php }}) ${{ matrix.variant }}
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.2'
variant: ['normal']
dependencies: ['highest']
include:
- php: '8.2'
variant: 'symfony/symfony:"^6.4"'
dependencies: 'highest'
- php: '8.2'
variant: 'symfony/symfony:"^7.0"'
dependencies: 'highest'
fail-fast: false
services:
# To keep in sync with fixtures/Functional/config/doctrine.yml and docker-compose.yaml
mysql:
image: mysql:8.0
ports:
- 3307:3306
env:
MYSQL_DATABASE: hautelook_alice_bundle
MYSQL_ROOT_USER: root
MYSQL_ROOT_PASSWORD: password
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure Symfony (variant)
if: matrix.variant != 'normal'
run: composer require --dev --no-update ${{ matrix.variant }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
extensions: intl, bcmath, curl, openssl, mbstring
ini-values: memory_limit=-1
- name: Install Composer dependencies (${{ matrix.dependencies }})
uses: ramsey/composer-install@v1
with:
dependency-versions: ${{ matrix.dependencies }}
composer-options: "--prefer-dist"
- name: Wait for MySQL
run: |
while ! mysqladmin ping --host=$MYSQL_HOST --user=root --password=$MYSQL_ROOT_PASSWORD --port=3307; do
sleep 1
done
- name: Run tests
run: vendor/bin/phpunit --verbose --stop-on-failure