-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (44 loc) · 1.41 KB
/
lint.yml
File metadata and controls
56 lines (44 loc) · 1.41 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Code Standards Compliance Checks
on:
workflow_dispatch:
pull_request:
permissions:
contents: read
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
php:
name: Lint PHP files
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: mu-plugins cache
uses: actions/cache@v4
with:
path: mu-plugins
key: ${{ runner.os }}-build-pr-${{ github.event.pull_request.number }}
restore-keys: |
${{ runner.os }}-build-pr-
- name: Download mu-plugins
run: ./bin/load-mu-plugins.sh
- name: Set up PHP
uses: shivammathur/setup-php@fc14643b0a99ee9db10a3c025a33d76544fa3761 # 2.30.5
with:
coverage: none
env:
fail-fast: "true"
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- name: Install PHP dependencies
uses: ramsey/composer-install@57532f8be5bda426838819c5ee9afb8af389d51a # 3.0.0
- name: Add error matcher
run: echo "::add-matcher::$(pwd)/.github/checkstyle-problem-matcher.json"
- name: Run style check
run: composer lint
- name: PHPStan
run: composer analyze