Skip to content

Update README.md

Update README.md #10

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: WordPress Tests
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
phpcs:
runs-on: ubuntu-latest
name: PHPCS
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
extensions: mbstring, intl #optional, setup extensions
ini-values: memory_limit=256M #optional, setup php.ini configuration
coverage: xdebug #optional, setup coverage driver
- name: Check PHP Version
run: php -v
- name: Cache composer packages
uses: actions/cache@v2
with:
path: vendor
key: composer-${{ hashFiles('composer.lock') }}
- name: Install PHPCS with WordPress Coding Standards
run: |
composer require dealerdirect/phpcodesniffer-composer-installer wp-coding-standards/wpcs phpcompatibility/php-compatibility
- name: Run PHPCS Coding Standards
run: |
vendor/bin/phpcs -v --standard=WordPress --ignore="Michelf/*,vendor/*" --exclude="WordPress.Files.FileName" $GITHUB_WORKSPACE
vendor/bin/phpcs -v --standard=PHPCompatibility --runtime-set testVersion 5.4- --ignore="vendor/*" -p $GITHUB_WORKSPACE