Update symfony packages #887
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 | |
- pull_request | |
env: | |
DEFAULT_PHP_VERSION: '8.1' | |
jobs: | |
phpSyntaxCheck: | |
name: 'PHP Syntax Check (${{ matrix.php.version }})' | |
strategy: | |
matrix: | |
php: | |
- | |
version: '8.1' | |
experimental: false | |
- | |
version: '8.2' | |
experimental: false | |
- | |
version: '8.3' | |
experimental: true | |
- | |
version: '8.4' | |
experimental: true | |
runs-on: ubuntu-22.04 | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
name: 'Set up PHP ${{ matrix.php.version }}' | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '${{ matrix.php.version }}' | |
- | |
name: 'Syntax Check' | |
continue-on-error: '${{ matrix.php.experimental }}' | |
env: | |
LANG: C | |
run: | | |
find . \( -type d \( -name '.git' -or -name 'vendor' -or -name 'node_modules' -or -name 'runtime' \) -prune \) -or \( -type f -name '*.php' -print \) \ | |
| sort \ | |
| xargs -n 1 php -l | |
makeComposerCache: | |
name: 'Make composer cache' | |
runs-on: ubuntu-22.04 | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/composer/files | |
vendor | |
key: "${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}" | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- | |
name: 'Set up PHP ${{ env.DEFAULT_PHP_VERSION }}' | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '${{ env.DEFAULT_PHP_VERSION }}' | |
- | |
name: 'Install Composer dependencies' | |
run: 'composer install --prefer-dist' | |
phpcs: | |
name: 'PHP Coding Style (PHPCS)' | |
runs-on: ubuntu-22.04 | |
needs: | |
- phpSyntaxCheck | |
- makeComposerCache | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/composer/files | |
vendor | |
key: "${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}" | |
- | |
name: 'Set up PHP ${{ env.DEFAULT_PHP_VERSION }}' | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '${{ env.DEFAULT_PHP_VERSION }}' | |
- | |
name: 'Check Styles' | |
run: | | |
make app-config | |
make check-style-phpcs | |
phpstan: | |
name: 'PHP Coding Style (PHPStan)' | |
runs-on: ubuntu-22.04 | |
needs: | |
- phpSyntaxCheck | |
- makeComposerCache | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/composer/files | |
vendor | |
key: "${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}" | |
- | |
name: 'Set up PHP ${{ env.DEFAULT_PHP_VERSION }}' | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '${{ env.DEFAULT_PHP_VERSION }}' | |
- | |
name: 'Check Styles' | |
run: | | |
make app-config | |
make check-style-phpstan | |
phpTest: | |
name: 'PHP Test (${{ matrix.php.version }})' | |
strategy: | |
matrix: | |
php: | |
- | |
version: '8.1' | |
experimental: false | |
- | |
version: '8.2' | |
experimental: false | |
- | |
version: '8.3' | |
experimental: true | |
- | |
version: '8.4' | |
experimental: true | |
runs-on: ubuntu-22.04 | |
needs: | |
- phpSyntaxCheck | |
- makeComposerCache | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 'lts/*' | |
- | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/composer/files | |
vendor | |
key: "${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}" | |
- | |
name: 'Set up PHP ${{ matrix.php.version }}' | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '${{ matrix.php.version }}' | |
- | |
name: 'Set Up Environment' | |
continue-on-error: '${{ matrix.php.experimental }}' | |
run: 'make -j' | |
- | |
name: 'Run Unit Test' | |
continue-on-error: '${{ matrix.php.experimental }}' | |
run: 'make test' | |
jsStyleCheck: | |
name: 'JS Coding Style' | |
runs-on: ubuntu-22.04 | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- | |
run: 'make check-style-js' | |
cssStyleCheck: | |
name: 'CSS Coding Style' | |
runs-on: ubuntu-22.04 | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- | |
run: 'make check-style-css' |