Skip to content

Include dat files in PHAR compiling #19

Include dat files in PHAR compiling

Include dat files in PHAR compiling #19

Workflow file for this run

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:
- '7.3'
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:
- '7.3'
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:
- '7.3'
- '7.4'
- '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: "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"