|
@@ -86,8 +86,7 @@ jobs:
|
|
|
composer-
|
|
|
|
|
|
- name: Configure Symfony Flex
|
|
|
- run: |
|
|
|
- composer config extra.symfony.require ${{ matrix.execute-flex-with-symfony-version }}
|
|
|
+ run: composer config extra.symfony.require ${{ matrix.execute-flex-with-symfony-version }}
|
|
|
if: "matrix.execute-flex-with-symfony-version"
|
|
|
|
|
|
- name: Install dependencies
|
|
@@ -98,11 +97,10 @@ jobs:
|
|
|
retry_wait_seconds: 30
|
|
|
command: |
|
|
|
composer update --optimize-autoloader --no-interaction --no-progress ${{ matrix.composer-flags }}
|
|
|
- composer info -D | sort
|
|
|
+ composer info -D
|
|
|
|
|
|
- name: Execute migration rules
|
|
|
- run: |
|
|
|
- php php-cs-fixer fix --rules @PHP73Migration,@PHP71Migration:risky,blank_line_after_opening_tag -q
|
|
|
+ run: php php-cs-fixer fix --rules @PHP73Migration,@PHP71Migration:risky,blank_line_after_opening_tag -q
|
|
|
if: "matrix.execute-migration-rules == 'yes'"
|
|
|
|
|
|
- name: Run tests
|
|
@@ -112,12 +110,10 @@ jobs:
|
|
|
FAST_LINT_TEST_CASES: ${{ matrix.FAST_LINT_TEST_CASES }}
|
|
|
PHP_CS_FIXER_TEST_USE_LEGACY_TOKENIZER: ${{ matrix.PHP_CS_FIXER_TEST_USE_LEGACY_TOKENIZER }}
|
|
|
SYMFONY_DEPRECATIONS_HELPER: ${{ matrix.SYMFONY_DEPRECATIONS_HELPER }}
|
|
|
- run: |
|
|
|
- vendor/bin/phpunit
|
|
|
+ run: vendor/bin/phpunit
|
|
|
|
|
|
- name: Run PHP CS Fixer
|
|
|
env:
|
|
|
PHP_CS_FIXER_IGNORE_ENV: ${{ matrix.PHP_CS_FIXER_IGNORE_ENV }}
|
|
|
PHP_CS_FIXER_FUTURE_MODE: 1
|
|
|
- run: |
|
|
|
- php php-cs-fixer --diff --dry-run -v fix
|
|
|
+ run: php php-cs-fixer --diff --dry-run -v fix
|