Files
ultimatemember/.github/workflows/code-quality.yml
T
2022-08-13 02:28:52 +03:00

21 lines
390 B
YAML

name: Ultimate Member - Checking Code quality through PHPCS + WPCS
on:
push:
branches:
- development/3.0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run CS
run: vendor/bin/phpcs --standard=phpcs.xml .