-
Notifications
You must be signed in to change notification settings - Fork 14
43 lines (34 loc) · 984 Bytes
/
phpcbf.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: WP Job Openings Coding Standards based Formatting
on:
push:
branches: [ dev-branch, v3-dev-branch ]
paths:
- 'phpcs.xml'
- '**.php'
pull_request:
branches: [ dev-branch, v3-dev-branch ]
paths:
- 'phpcs.xml'
- '**.php'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run phpcbf
run: composer run-script phpcbfx
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "IMPROVE: Code formatting based on phpcs"