Bugfix fix php support in tests #161
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
name: "PHP-CI" | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "30 6 * * 1" | |
env: | |
PHP_EXTENSIONS: "intl, mbstring, json, zip, curl" | |
jobs: | |
php-lint: | |
name: "PHP Lint" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
steps: | |
- | |
name: "Checkout" | |
uses: "actions/checkout@v2" | |
- | |
name: "Setup PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.PHP_EXTENSIONS }}" | |
- | |
name: "Validate composer.json and composer.lock" | |
run: "composer validate --strict" | |
- | |
name: "Determine composer cache directory" | |
id: "determine-composer-cache-directory" | |
run: "echo \"::set-output name=directory::$(composer config cache-dir)\"" | |
- | |
name: "Cache dependencies installed with composer" | |
uses: "actions/[email protected]" | |
with: | |
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}" | |
key: "php-${{ matrix.php-version }}-composer-${{ hashFiles('composer.lock') }}" | |
restore-keys: "php-${{ matrix.php-version }}-composer-" | |
- | |
name: "Install composer dependencies" | |
run: "composer install --no-interaction --no-progress --no-suggest" | |
- | |
name: "Run Linter" | |
run: "composer lint:php" | |
php-qs: | |
name: "PHP QS" | |
runs-on: "ubuntu-latest" | |
needs: "php-lint" | |
strategy: | |
matrix: | |
command: | |
- "test:phpcs" | |
- "test:phpcompatibility" | |
- "test:phpmd" | |
- "test:phpstan" | |
php-version: | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
steps: | |
- | |
name: "Checkout" | |
uses: "actions/checkout@v2" | |
- | |
name: "Setup PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.PHP_EXTENSIONS }}" | |
- | |
name: "Validate composer.json and composer.lock" | |
run: "composer validate --strict" | |
- | |
name: "Determine composer cache directory" | |
id: "determine-composer-cache-directory" | |
run: "echo \"::set-output name=directory::$(composer config cache-dir)\"" | |
- | |
name: "Cache dependencies installed with composer" | |
uses: "actions/[email protected]" | |
with: | |
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}" | |
key: "php-${{ matrix.php-version }}-composer-${{ hashFiles('composer.lock') }}" | |
restore-keys: "php-${{ matrix.php-version }}-composer-" | |
- | |
name: "Install composer dependencies" | |
run: "composer install --no-interaction --no-progress --no-suggest" | |
- | |
name: "Run command" | |
run: "composer ${{ matrix.command }}" | |
php-unit: | |
name: "PHP Unit" | |
runs-on: "ubuntu-latest" | |
needs: ["php-lint", "php-qs"] | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- typo3-version: "^11.5" | |
php-version: "7.4" | |
- typo3-version: "^11.5" | |
php-version: "8.0" | |
- typo3-version: "^11.5" | |
php-version: "8.1" | |
- typo3-version: "^11.5" | |
php-version: "8.2" | |
- typo3-version: "^11.5" | |
php-version: "8.3" | |
- typo3-version: "^12.4" | |
php-version: "8.1" | |
- typo3-version: "^12.4" | |
php-version: "8.2" | |
- typo3-version: "^12.4" | |
php-version: "8.3" | |
steps: | |
- | |
name: "Checkout" | |
uses: "actions/checkout@v2" | |
- | |
name: "Setup PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
extensions: "${{ env.PHP_EXTENSIONS }}" | |
- | |
name: "Validate composer.json and composer.lock" | |
run: "composer validate --strict" | |
- | |
name: "Determine composer cache directory" | |
id: "determine-composer-cache-directory" | |
run: "echo \"::set-output name=directory::$(composer config cache-dir)\"" | |
- | |
name: "Cache dependencies installed with composer" | |
uses: "actions/[email protected]" | |
with: | |
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}" | |
key: "php-${{ matrix.php-version }}-composer-${{ hashFiles('composer.lock') }}" | |
restore-keys: "php-${{ matrix.php-version }}-composer-" | |
- | |
name: "Install composer dependencies" | |
run: | | |
composer remove --no-update typo3/cms typo3/cms-core | |
composer require typo3/minimal:"${{ matrix.typo3-version }}" | |
- | |
name: "Run PHP unit tests" | |
run: "composer test:phpunit" | |