2021-11-03 10:26:18 -04:00
|
|
|
name: continuous-integration
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- release/*
|
|
|
|
pull_request:
|
|
|
|
jobs:
|
|
|
|
code-analysis:
|
|
|
|
name: Code Analysis (PHP ${{ matrix.php-versions }})
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-11-25 22:56:04 -05:00
|
|
|
php-versions: ['7.2', '7.3', '7.4', '8.0']
|
|
|
|
cs-fixer: [ true ]
|
|
|
|
include:
|
|
|
|
- php-versions: '7.1'
|
|
|
|
cs-fixer: false
|
2021-11-03 10:26:18 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup PHP, with composer and extensions
|
|
|
|
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
|
|
|
extensions: mbstring, dom, fileinfo, mysql, redis, opcache
|
|
|
|
coverage: ${{ matrix.coverage }}
|
|
|
|
tools: composer
|
|
|
|
|
|
|
|
- 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 }}
|
|
|
|
# Use composer.json for key, if composer.lock is not committed.
|
|
|
|
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-composer-
|
|
|
|
|
2021-11-25 22:56:04 -05:00
|
|
|
- name: Remove php-cs-fixer dependency when not used
|
|
|
|
if: matrix.cs-fixer == false
|
|
|
|
run: composer remove --dev friendsofphp/php-cs-fixer
|
|
|
|
|
2021-11-03 10:26:18 -04:00
|
|
|
- name: Install composer dependencies
|
|
|
|
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
|
|
|
|
|
|
- name: Code Analysis (PHP CS-Fixer)
|
2021-11-25 22:56:04 -05:00
|
|
|
if: matrix.cs-fixer == true
|
2021-11-03 10:26:18 -04:00
|
|
|
run: php vendor/bin/php-cs-fixer fix --dry-run --diff
|
|
|
|
|
|
|
|
- name: Code Analysis (PHPStan)
|
|
|
|
run: composer phpstan
|