forked from jonathanmaron/ctw-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.scrutinizer.yml
35 lines (33 loc) · 981 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:
php74:
environment:
php:
version: 7.4
tests:
override:
- php-scrutinizer-run
-
command: vendor/bin/phpunit --coverage-clover=coverage74.xml
coverage:
file: coverage74.xml
format: php-clover
php80:
environment:
php:
version: 8.0
tests:
override:
- php-scrutinizer-run
-
command: XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover=coverage80.xml
coverage:
file: coverage80.xml
format: php-clover