[TASK] Set version to 5.5.1 #304
Workflow file for this run
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: CI | |
on: | |
push: | |
paths: | |
- 'composer.json' | |
- '.github/workflows/ci.yml' | |
- '**.php' | |
pull_request: | |
paths: | |
- 'composer.json' | |
- '.github/workflows/ci.yml' | |
- '**.php' | |
jobs: | |
build: | |
name: Build PHP/TYPO3 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-versions: | |
- '8.1' | |
typo3-versions: | |
- '^11' | |
- '^12' | |
include: | |
- php-versions: '7.4' | |
typo3-versions: '^11' | |
- php-versions: '8.0' | |
typo3-versions: '^11' | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Setup PHP version | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: | | |
echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache composer dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install composer dependencies | |
run: | | |
composer require typo3/cms-core=${{ matrix.typo3-versions }} typo3/cms-install=${{ matrix.typo3-versions }} --no-progress --prefer-dist --optimize-autoloader && composer exec typo3-coding-standards extension | |
- name: Run PHP linter | |
run: | | |
find . -name \*.php ! -path "./.Build/*" -exec php -l {} \; | |
- name: Run unit tests | |
run: | | |
.Build/bin/phpunit -c Tests/phpunit.xml.dist | |
- name: Run PHPStan | |
run: | | |
.Build/bin/phpstan --configuration=Tests/phpstan.neon --no-progress | |
- name: Run php-cs-fixer | |
run: | | |
.Build/bin/php-cs-fixer fix -v --dry-run --stop-on-violation --using-cache=no |