Require Doctrine Migrations 3.x, support PHP 8.2/8.3 and TYPO3 v12 #65
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
--- | |
# This GitHub Actions workflow uses the same development tools that are also installed locally | |
# via Composer or PHIVE and calls them using the Composer scripts. | |
name: CI with Composer scripts | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
code-quality-matrix: | |
name: "Code quality checks (PHP version matrix)" | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
- name: "Install PHP" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php-version }}" | |
coverage: none | |
tools: composer:v2.7 | |
- name: "Show Composer version" | |
run: composer --version | |
- name: "Cache dependencies installed with composer" | |
uses: actions/cache@v3 | |
with: | |
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}" | |
path: ~/.cache/composer | |
restore-keys: "php${{ matrix.php-version }}-composer-\n" | |
- name: "Install Composer dependencies" | |
run: "composer install --no-progress" | |
- name: "Run command" | |
run: "composer ${{ matrix.command }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- "8.0" | |
- "8.1" | |
# TODO add PHP 8.2 once PHP-CS-Fixer supports it | |
command: | |
- "cs:check" | |
- "php:static" | |
code-quality: | |
name: "Code quality checks (single PHP version)" | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
- name: "Install PHP" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php-version }}" | |
coverage: none | |
tools: composer:v2.7 | |
- name: "Show Composer version" | |
run: composer --version | |
- name: "Cache dependencies installed with composer" | |
uses: actions/cache@v3 | |
with: | |
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}" | |
path: ~/.cache/composer | |
restore-keys: "php${{ matrix.php-version }}-composer-\n" | |
- name: "Install Composer dependencies" | |
run: "composer install --no-progress" | |
- name: "Run command" | |
run: "composer ${{ matrix.command }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
command: | |
- "normalize" | |
functional-tests: | |
name: "Functional tests" | |
runs-on: ubuntu-24.04 | |
env: | |
DB_DATABASE: typo3 | |
DB_USER: root | |
DB_PASSWORD: root | |
DB_HOST: localhost | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
- name: "Install PHP" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php-version }}" | |
tools: composer:v2.7 | |
extensions: mysqli | |
coverage: none | |
- name: "Show Composer version" | |
run: "composer --version" | |
- name: "Show the Composer configuration" | |
run: "composer config --global --list" | |
- name: "Cache dependencies installed with composer" | |
uses: actions/cache@v3 | |
with: | |
key: "php${{ matrix.php-version }}-typo3${{ matrix.typo3-version }}-${{ matrix.composer-dependencies }}-composer-${{ hashFiles('**/composer.json') }}" | |
path: ~/.cache/composer | |
restore-keys: "php${{ matrix.php-version }}-typo3${{ matrix.typo3-version }}-${{ matrix.composer-dependencies }}-composer-\n" | |
- name: "Install TYPO3 Core" | |
env: | |
TYPO3: "${{ matrix.typo3-version }}" | |
run: | | |
composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"$TYPO3" | |
composer show | |
- name: "Install lowest dependencies with composer" | |
if: "matrix.composer-dependencies == 'lowest'" | |
run: | | |
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest | |
composer show | |
- name: "Install highest dependencies with composer" | |
if: "matrix.composer-dependencies == 'highest'" | |
run: | | |
composer update --no-ansi --no-interaction --no-progress --with-dependencies | |
composer show | |
- name: "Start MySQL" | |
run: "sudo /etc/init.d/mysql start" | |
- name: "Run functional tests" | |
run: | | |
export typo3DatabaseName="$DB_DATABASE"; | |
export typo3DatabaseHost="$DB_HOST"; | |
export typo3DatabaseUsername="$DB_USER"; | |
export typo3DatabasePassword="$DB_PASSWORD"; | |
composer test:php:functional | |
strategy: | |
fail-fast: false | |
matrix: | |
typo3-version: ["^11.5", "^12.4"] | |
php-version: ["8.0", "8.1", "8.2", "^8.3"] | |
composer-dependencies: ["lowest", "highest"] | |
exclude: | |
- typo3-version: "^12.4" | |
php-version: "8.0" |