Skip to content

Bump wp-coding-standards/wpcs from 2.3.0 to 3.0.1 #43

Bump wp-coding-standards/wpcs from 2.3.0 to 3.0.1

Bump wp-coding-standards/wpcs from 2.3.0 to 3.0.1 #43

Workflow file for this run

name: Run PHPCS and PHPLint
on: [pull_request]
jobs:
PHPCS:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Composer dependencies
uses: ramsey/composer-install@v1
with:
working-dir: ${{ github.repository }}
args: update
- name: Show PHPCS sniffs
run: ./vendor/bin/phpcs -i
- name: Show PHPCS version
run: ./vendor/bin/phpcs --version
- name: Run PHP_CodeSniffer
run: composer phpcs
PHPLint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Composer dependencies
uses: ramsey/composer-install@v1
with:
working-dir: ${{ github.repository }}
args: update
- name: Show PHPLint version info
run: ./vendor/bin/phplint --version
- name: Run PHPLint
run: composer phplint