-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scrutinizer.yml
35 lines (33 loc) · 1002 Bytes
/
.scrutinizer.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
checks:
php:
code_rating: true
duplication: true
filter:
paths:
- src/*
build:
nodes:
php81:
environment:
php:
version: 8.1
tests:
override:
- php-scrutinizer-run
-
command: XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover=coverage81.xml
coverage:
file: coverage81.xml
format: php-clover
php82:
environment:
php:
version: 8.2
tests:
override:
- php-scrutinizer-run
-
command: XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover=coverage82.xml
coverage:
file: coverage82.xml
format: php-clover