fix: export serialization groups #130
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
| name: Build | |
| on: | |
| push: ~ | |
| pull_request: ~ | |
| release: | |
| types: [created] | |
| workflow_dispatch: ~ | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| name: "PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }}" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: ["8.3"] | |
| symfony: ["^6.4", "^7.3"] | |
| mysql: ["8.4"] | |
| env: | |
| APP_ENV: test_minimal | |
| DATABASE_URL: "mysql://root:root@127.0.0.1/sylius?serverVersion=${{ matrix.mysql }}" | |
| steps: | |
| - | |
| uses: actions/checkout@v4 | |
| - | |
| name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "${{ matrix.php }}" | |
| extensions: intl | |
| tools: symfony | |
| coverage: none | |
| - | |
| name: Shutdown default MySQL | |
| run: sudo service mysql stop | |
| - | |
| name: Setup MySQL | |
| uses: mirromutth/mysql-action@v1.1 | |
| with: | |
| mysql version: "${{ matrix.mysql }}" | |
| mysql root password: "root" | |
| - | |
| name: Get Composer cache directory | |
| id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - | |
| name: Cache Composer | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json **/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-php-${{ matrix.php }}-composer- | |
| - | |
| 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:^2.4" | |
| composer config --no-plugins allow-plugins.symfony/thanks true | |
| composer config extra.symfony.require "${{ matrix.symfony }}" | |
| - | |
| name: Install PHP dependencies | |
| run: composer install --no-interaction | |
| - | |
| name: Run ECS | |
| run: vendor/bin/ecs check | |
| - | |
| name: Validate composer.json | |
| run: composer validate --ansi --strict | |
| - | |
| name: Run PHPStan | |
| run: vendor/bin/phpstan analyse | |
| - | |
| name: Warmup cache | |
| run: vendor/bin/console cache:warmup | |
| - | |
| name: Validate container | |
| run: vendor/bin/console lint:container | |
| - | |
| name: Warmup cache | |
| run: vendor/bin/console cache:warmup | |
| - | |
| name: Setup database | |
| run: | | |
| vendor/bin/console doctrine:database:create | |
| vendor/bin/console doctrine:schema:create | |
| - | |
| name: Run PHPUnit | |
| run: vendor/bin/phpunit --testsuite=functional --colors=always |