Test #1031
This file contains hidden or 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: Test | |
| on: | |
| push: | |
| branches: [ "*" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| schedule: | |
| - cron: '13 5 * * *' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| operating-system: [ubuntu-latest] | |
| php: [ '8.2', '8.3', '8.4', '8.5' ] | |
| symfony: [ '6.*', '7.*' ] | |
| dep: [highest,lowest] | |
| runs-on: ${{ matrix.operating-system }} | |
| name: Symfony ${{ matrix.symfony }}, ${{ matrix.dep }} deps, PHP ${{ matrix.php }}, ${{ matrix.operating-system }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: intl | |
| tools: phive | |
| - name: Install Symfony Flex globally | |
| run: | | |
| composer global config --no-plugins allow-plugins.symfony/flex true | |
| composer global require --no-progress --no-scripts --no-plugins symfony/flex | |
| - name: Validate composer.json and composer.lock | |
| run: composer validate --strict | |
| - name: Cache Composer packages | |
| id: composer-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: vendor | |
| key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-php- | |
| - name: Install dependencies | |
| uses: ramsey/composer-install@v3 | |
| with: | |
| dependency-versions: ${{ matrix.dep }} | |
| composer-options: --prefer-dist --no-progress --ignore-platform-reqs | |
| env: | |
| SYMFONY_REQUIRE: ${{ matrix.symfony }} | |
| - name: Lint container | |
| run: tests/bin/console lint:container | |
| - name: Run psalm | |
| run: vendor/bin/psalm | |
| if: matrix.dep == 'highest' && matrix.symfony == '7.*' && matrix.php != '8.5' | |
| - name: Run phpstan | |
| run: vendor/bin/phpstan analyse | |
| if: matrix.dep == 'highest' && matrix.symfony == '7.*' | |
| - name: Run phpunit | |
| run: | | |
| export SYMFONY_DEPRECATIONS_HELPER='max[direct]=0' | |
| vendor/bin/phpunit |