mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-11 18:56:10 +09:00
18 lines
349 B
YAML
18 lines
349 B
YAML
name: Ultimate Member - Checking Code quality through PHPCS + WPCS
|
|
|
|
on: push
|
|
|
|
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 .
|