DevKit updates for 4.x branch #2660
Workflow file for this run
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
| # DO NOT EDIT THIS FILE! | |
| # | |
| # It's auto-generated by sonata-project/dev-kit package. | |
| name: Test | |
| on: | |
| schedule: | |
| - cron: '30 0 * * *' | |
| push: | |
| branches: | |
| - 4.x | |
| - 5.x | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: PHP ${{ matrix.php-version }} + ${{ matrix.dependencies }} + ${{ matrix.variant }} | |
| runs-on: ubuntu-latest | |
| continue-on-error: ${{ matrix.allowed-to-fail }} | |
| env: | |
| SYMFONY_REQUIRE: ${{matrix.symfony-require}} | |
| services: | |
| mongo: | |
| image: mongo | |
| ports: | |
| - 27017:27017 | |
| strategy: | |
| matrix: | |
| php-version: | |
| - '8.2' | |
| - '8.3' | |
| - '8.4' | |
| - '8.5' | |
| dependencies: [highest] | |
| allowed-to-fail: [false] | |
| symfony-require: [''] | |
| variant: [normal] | |
| include: | |
| - php-version: '8.2' | |
| dependencies: lowest | |
| allowed-to-fail: false | |
| variant: normal | |
| - php-version: '8.5' | |
| dependencies: highest | |
| allowed-to-fail: false | |
| symfony-require: 6.4.* | |
| variant: symfony/symfony:"6.4.*" | |
| - php-version: '8.5' | |
| dependencies: highest | |
| allowed-to-fail: false | |
| symfony-require: 7.3.* | |
| variant: symfony/symfony:"7.3.*" | |
| - php-version: '8.5' | |
| dependencies: highest | |
| allowed-to-fail: false | |
| symfony-require: 7.4.* | |
| variant: symfony/symfony:"7.4.*" | |
| - php-version: '8.5' | |
| dependencies: highest | |
| allowed-to-fail: false | |
| symfony-require: 8.0.* | |
| variant: symfony/symfony:"8.0.*" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install PHP with extensions | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| coverage: pcov | |
| tools: composer:v2, flex | |
| extensions: mongodb | |
| - name: Add PHPUnit matcher | |
| run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
| # until Psalm supports Symfony 8 | |
| - name: Remove psalm | |
| if: matrix.symfony-require == '8.0.*' | |
| run: composer remove vimeo/psalm psalm/plugin-symfony psalm/plugin-phpunit --dev --no-update | |
| - name: Install variant | |
| if: matrix.variant != 'normal' && !startsWith(matrix.variant, 'symfony/symfony') | |
| run: composer require ${{ matrix.variant }} --no-update | |
| - name: Install Composer dependencies (${{ matrix.dependencies }}) | |
| uses: ramsey/composer-install@v3 | |
| with: | |
| dependency-versions: ${{ matrix.dependencies }} | |
| - name: Run Tests with coverage | |
| run: make coverage | |
| - name: Send coverage to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| files: build/logs/clover.xml |