-
Notifications
You must be signed in to change notification settings - Fork 1
/
grumphp.yml
48 lines (46 loc) · 1.24 KB
/
grumphp.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
44
45
46
grumphp:
testsuites:
github_actions:
tasks:
- composer_require_checker
- phpcs
- phpmd
- phpstan
- psalm
tasks:
composer_require_checker:
composer_file: 'composer.json'
config_file: ~
ignore_parse_errors: false
triggered_by: [ 'composer.json', 'composer.lock', '*.php' ]
git_branch_name:
whitelist:
- "feature/*"
- "bugfix/*"
- "hotfix/*"
blacklist:
- "develop"
- "master"
- "main"
additional_modifiers: ''
allow_detached_head: true
phpcs: null
phpmd:
whitelist_patterns:
- /^src\/(.*)/
ruleset:
- ./ruleset.xml
phpstan:
configuration: phpstan.neon
use_grumphp_paths: true
phpunit: null
infection:
psalm:
config: psalm.xml
no_cache: true
report: ~
ignore_patterns:
- /^tests/
threads: 1
triggered_by: ['php']
show_info: true