Fixing the box build #28
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: | |
pull_request: | |
push: | |
branches: | |
- 'master' | |
env: | |
fail-fast: true | |
TZ: "Europe/Paris" | |
jobs: | |
php-cs-fixer: | |
name: "PHP-CS-Fixer (${{ matrix.php-version }})" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- '8.0' | |
steps: | |
- | |
name: "Checkout code" | |
uses: "actions/checkout@v2" | |
- | |
name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}" | |
php-version: "${{ matrix.php-version }}" | |
tools: composer:v2 | |
- | |
name: "Composer install" | |
uses: "ramsey/composer-install@v1" | |
with: | |
composer-options: "--no-scripts" | |
- | |
name: "Run friendsofphp/php-cs-fixer" | |
run: "vendor/bin/php-cs-fixer fix --dry-run --diff --verbose --allow-risky=yes" | |
phpstan: | |
name: "PHPStan (${{ matrix.php-version }})" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- '8.0' | |
steps: | |
- | |
name: "Checkout code" | |
uses: "actions/checkout@v2" | |
- | |
name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}" | |
php-version: "${{ matrix.php-version }}" | |
tools: composer:v2 | |
- | |
name: "Composer install" | |
uses: "ramsey/composer-install@v1" | |
with: | |
composer-options: "--no-scripts" | |
- | |
name: "Run PHPStan" | |
run: "vendor/bin/phpstan analyse" | |
phpunit: | |
name: "PHPUnit (${{ matrix.php-version }})" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- '8.0' | |
- '8.1' | |
- '8.2' | |
steps: | |
- | |
name: "Checkout code" | |
uses: "actions/checkout@v2" | |
- | |
name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}" | |
php-version: "${{ matrix.php-version }}" | |
tools: composer:v2 | |
- | |
name: "Remove BOX" | |
run: "composer remove humbug/box --no-update --dev" | |
- | |
name: "Composer install" | |
uses: "ramsey/composer-install@v1" | |
with: | |
composer-options: "--no-scripts" | |
- | |
name: "Run PHPUnit" | |
run: "vendor/bin/phpunit" |