mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
6aa634f812
Fixed/wp admin performance
21 lines
390 B
YAML
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 .
|