-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (48 loc) · 1.23 KB
/
lint.yaml
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
name: "Lint PHP"
on:
pull_request:
push:
branches:
- master
- develop
jobs:
phpcs:
name: PHPCS
runs-on: ubuntu-20.04
strategy:
matrix:
php-versions: ['7.4']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, curl, zip
coverage: none
tools: composer
- name: Install dependencies
run: composer update --no-interaction --no-suggest --no-progress --optimize-autoloader
- name: Run
run: composer run lint:phpcs
phpmd:
name: PHPMD
runs-on: ubuntu-20.04
strategy:
matrix:
php-versions: ['7.4']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, curl, zip
coverage: none
tools: composer
- name: Install dependencies
run: composer update --no-interaction --no-suggest --no-progress --optimize-autoloader
- name: Run
run: composer run lint:phpmd