2021-04-05 19:07:54 +02:00
|
|
|
name: Lint
|
|
|
|
on: pull_request
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
php-linters:
|
2021-04-06 20:00:21 +02:00
|
|
|
name: php${{ matrix.php-versions }} lint
|
2021-04-05 19:07:54 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
php-versions: ['7.3', '7.4', '8.0']
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2021-04-07 19:55:36 +02:00
|
|
|
uses: actions/checkout@v2
|
2021-04-05 19:07:54 +02:00
|
|
|
- name: Set up php${{ matrix.php-versions }}
|
|
|
|
uses: shivammathur/setup-php@master
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
|
|
|
coverage: none
|
|
|
|
- name: Lint
|
|
|
|
run: bin/composer.phar run lint
|
2021-04-06 20:00:21 +02:00
|
|
|
|
|
|
|
php-cs-fixer:
|
|
|
|
name: php-cs check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2021-04-07 19:55:36 +02:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get changed files
|
|
|
|
id: changes
|
|
|
|
uses: jitterbit/get-changed-files@v1
|
2021-04-06 20:00:21 +02:00
|
|
|
- name: Set up php
|
|
|
|
uses: shivammathur/setup-php@master
|
|
|
|
with:
|
|
|
|
php-version: 7.2
|
|
|
|
coverage: none
|
|
|
|
- name: Install dependencies
|
|
|
|
run: bin/composer.phar run cs:install
|
|
|
|
- name: Run coding standards check
|
|
|
|
run: |
|
2021-04-08 23:16:55 +02:00
|
|
|
if ! echo "${{ steps.changes.outputs.added }}" | grep -qE "^(\\.php_cs(\\.dist)?|composer\\.lock)$"; then EXTRA_ARGS=$(printf -- '--path-mode=intersection\n--\n%s' "${{ steps.changes.outputs.added }}"); else EXTRA_ARGS=''; fi
|
2021-04-07 20:17:35 +02:00
|
|
|
bin/dev/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --diff --diff-format=udiff --dry-run --stop-on-violation --using-cache=no ${EXTRA_ARGS}
|
2021-04-06 20:00:21 +02:00
|
|
|
shell: bash
|