Allow short array syntax for WPCS 3.0.1 #159
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
# @Author: Roni Laukkarinen | |
# @Date: 2023-02-15 17:39:37 | |
# @Last Modified by: Roni Laukkarinen | |
# @Last Modified time: 2024-02-14 17:02:41 | |
name: PHP | |
on: [push, pull_request] | |
env: | |
PHPCS_DIR: /tmp/phpcs | |
PHPCOMPAT_DIR: /tmp/phpcompatibility | |
SNIFFS_DIR: /tmp/sniffs | |
WPCS_DIR: /tmp/wpcs | |
jobs: | |
build: | |
name: Test php | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Setup PHP with Xdebug 2.x | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
coverage: xdebug2 | |
- name: Set up PHPCS and WordPress-Coding-Standards | |
uses: php-actions/composer@v6 | |
env: | |
COMPOSER: "composer.json" | |
with: | |
php_version: "7.4" | |
version: "2.3.7" | |
args: "--ignore-platform-reqs --optimize-autoloader" | |
run: | | |
composer global config allow-plugins.dealerdirect/phpcodesniffer-composer-installer true | |
composer global require --dev wp-coding-standards/wpcs:"^3.0" | |
composer global require --dev phpcompatibility/php-compatibility:"*" | |
- name: Run PHP_CodeSniffer | |
run: | | |
vendor/bin/phpcs -p . --extensions=php --ignore=node_modules,*/css/*,*/sass/* --standard=phpcs.xml | |
- name: Test PHP for syntax errors | |
run: find -L . -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l |