Merge pull request #266 from brotkrueml/update-actions #369
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.2' | |
- '8.3' | |
typo3-versions: | |
- '^12' | |
- '^13' | |
include: | |
- php-versions: '8.1' | |
typo3-versions: '^12' | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
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 "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v4 | |
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 setup | |
- 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 |