Fix media url in data tab (#411) #434
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 application | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - '[0-9]+.x' | |
| - '[0-9]+.[0-9]+' | |
| jobs: | |
| php: | |
| name: 'PHP ${{ matrix.php-version }} (${{ matrix.database }}, ${{ matrix.dependency-versions }})' | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - php-version: '7.2' | |
| database: postgres | |
| dependency-versions: 'lowest' | |
| tools: 'composer:v2' | |
| phpunit-config: 'phpunit-9.xml.dist' | |
| env: | |
| SYMFONY_DEPRECATIONS_HELPER: disabled | |
| DATABASE_URL: postgres://postgres:[email protected]/sulu_form_test?serverVersion=12.5 | |
| DATABASE_CHARSET: UTF8 | |
| DATABASE_COLLATE: | |
| - php-version: '7.4' | |
| database: mysql | |
| dependency-versions: 'highest' | |
| tools: 'composer:v2' | |
| phpunit-config: 'phpunit-9.xml.dist' | |
| env: | |
| SYMFONY_DEPRECATIONS_HELPER: weak | |
| DATABASE_URL: mysql://root:[email protected]/sulu_form_test?serverVersion=5.7 | |
| DATABASE_CHARSET: utf8mb4 | |
| DATABASE_COLLATE: utf8mb4_unicode_ci | |
| - php-version: '8.0' | |
| database: mysql | |
| dependency-versions: 'highest' | |
| tools: 'composer:v2' | |
| env: | |
| SYMFONY_DEPRECATIONS_HELPER: weak | |
| DATABASE_URL: mysql://root:[email protected]/sulu_form_test?serverVersion=5.7 | |
| DATABASE_CHARSET: utf8mb4 | |
| DATABASE_COLLATE: utf8mb4_unicode_ci | |
| - php-version: '8.1' | |
| database: mysql | |
| dependency-versions: 'highest' | |
| tools: 'composer:v2' | |
| env: | |
| SYMFONY_DEPRECATIONS_HELPER: weak | |
| DATABASE_URL: mysql://root:[email protected]/sulu_form_test?serverVersion=5.7 | |
| DATABASE_CHARSET: utf8mb4 | |
| DATABASE_COLLATE: utf8mb4_unicode_ci | |
| - php-version: '8.2' | |
| database: postgres | |
| dependency-versions: 'highest' | |
| tools: 'composer:v2' | |
| env: | |
| SYMFONY_DEPRECATIONS_HELPER: weak | |
| DATABASE_URL: postgres://postgres:[email protected]/sulu_form_test?serverVersion=12.5 | |
| DATABASE_CHARSET: UTF8 | |
| DATABASE_COLLATE: | |
| - php-version: '8.3' | |
| database: mysql | |
| dependency-versions: 'highest' | |
| tools: 'composer:v2' | |
| env: | |
| SYMFONY_DEPRECATIONS_HELPER: weak | |
| DATABASE_URL: mysql://root:[email protected]/sulu_form_test?serverVersion=5.7 | |
| DATABASE_CHARSET: utf8mb4 | |
| DATABASE_COLLATE: utf8mb4_unicode_ci | |
| - php-version: '8.4' | |
| database: mysql | |
| dependency-versions: 'highest' | |
| tools: 'composer:v2' | |
| composer-stability: 'dev' | |
| env: | |
| SYMFONY_DEPRECATIONS_HELPER: weak | |
| DATABASE_URL: mysql://root:[email protected]/sulu_form_test?serverVersion=5.7 | |
| DATABASE_CHARSET: utf8mb4 | |
| DATABASE_COLLATE: utf8mb4_unicode_ci | |
| services: | |
| mysql: | |
| image: mysql:5.7 | |
| env: | |
| MYSQL_ROOT_PASSWORD: root | |
| ports: | |
| - 3306:3306 | |
| options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=5 | |
| postgres: | |
| image: postgres:12.5 | |
| env: | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: postgres | |
| ports: | |
| - 5432:5432 | |
| options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@v4 | |
| - name: Install and configure PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| extensions: 'imagick' | |
| tools: ${{ matrix.tools }} | |
| coverage: none | |
| - name: Remove Lint Tools | |
| # These tools are not required to run tests, so we are removing them to improve dependency resolving and | |
| # testing lowest versions. | |
| run: composer remove "*php-cs-fixer*" "*phpstan*" "*rector*" --dev --no-update | |
| - name: Set composer stability | |
| if: ${{ matrix.composer-stability }} | |
| run: composer config minimum-stability ${{ matrix.composer-stability }} | |
| - name: Install composer dependencies | |
| uses: ramsey/composer-install@v2 | |
| with: | |
| dependency-versions: ${{matrix.dependency-versions}} | |
| composer-options: ${{ matrix.composer-options }} | |
| - name: Bootstrap test environment | |
| run: composer bootstrap-test-environment | |
| env: ${{ matrix.env }} | |
| - name: Execute test cases | |
| run: time composer test -- --config ${{ matrix.phpunit-config || 'phpunit.xml.dist' }} | |
| env: ${{ matrix.env }} | |
| lint: | |
| name: 'PHP Lint' | |
| runs-on: ubuntu-latest | |
| env: | |
| DATABASE_URL: mysql://root:[email protected]/sulu_form_test?serverVersion=5.7 | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@v4 | |
| - name: Install and configure PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.3 | |
| extensions: 'imagick' | |
| tools: 'composer:v2' | |
| coverage: none | |
| - name: Install composer dependencies | |
| uses: ramsey/composer-install@v2 | |
| with: | |
| dependency-versions: ${{matrix.dependency-versions}} | |
| composer-options: ${{ matrix.composer-options }} | |
| - name: Lint code | |
| run: composer lint |