Update phpstan/phpstan requirement from 1.12.5 to 1.12.7 #896
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: Build | |
on: | |
push: ~ | |
pull_request: ~ | |
release: | |
types: [created] | |
schedule: | |
- | |
cron: "0 1 * * 6" # Run at 1am every Saturday | |
workflow_dispatch: ~ | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: "PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, Twig ${{ matrix.twig }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ["8.1", "8.2", "8.3"] | |
symfony: ["^5.4", "^6.4", "^7.0"] | |
twig: ["^2.12", "^3.3"] | |
exclude: | |
- twig: "^2.12" | |
symfony: "^7.0" | |
- php: "8.1" | |
symfony: "^7.0" | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php }}" | |
coverage: none | |
- | |
name: Restrict Symfony version | |
if: matrix.symfony != '' | |
run: | | |
composer global config --no-plugins allow-plugins.symfony/flex true | |
composer global require --no-progress --no-scripts --no-plugins "symfony/flex:^1.10" | |
composer config extra.symfony.require "${{ matrix.symfony }}" | |
(cd src/Component && composer config extra.symfony.require "${{ matrix.symfony }}") | |
- | |
name: Restrict Twig version | |
if: matrix.twig != '' | |
run: | | |
composer require "twig/twig:${{ matrix.twig }}" --no-update --no-scripts | |
- | |
name: Install dependencies | |
run: | | |
composer update ${{ matrix.composer-flags }} --no-scripts | |
(cd src/Component && composer update ${{ matrix.composer-flags }} --no-scripts) | |
- | |
name: Run analysis | |
run: | | |
composer analyse | |
(cd src/Component && composer validate --strict) | |
- | |
name: Run component tests | |
run: (cd src/Component && vendor/bin/phpspec run) | |
- | |
name: Run PHPSpec tests | |
run: vendor/bin/phpspec run | |
- | |
name: Test bundle (with all services) | |
run: | | |
rm -rf src/Bundle/test/var/cache | |
(cd src/Bundle/test && APP_ENV=test bin/console lint:container) | |
vendor/bin/phpunit --testsuite "SyliusMailerBundle Test Suite" | |
- | |
name: Install and test integration with translator component | |
run: | | |
composer require symfony/translation:${{ matrix.symfony }} | |
APP_ENV=test_with_translations vendor/bin/phpunit --testsuite "SyliusMailerBundle Integration Test Suite" | |
- | |
name: Run lint container (with no mailers) | |
run: | | |
rm -rf src/Bundle/test/var/cache | |
composer remove symfony/mailer --dev --no-scripts | |
(cd src/Bundle/test && APP_ENV=test_no_mailers bin/console lint:container) |