-
Notifications
You must be signed in to change notification settings - Fork 6
/
.scrutinizer.yml
42 lines (39 loc) · 914 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
36
37
38
39
40
41
42
filter:
paths: ["src/*"]
excluded_paths:
- "tests/"
- "vendor/"
checks:
php:
code_rating: true
duplication: true
tools:
external_code_coverage: false
build:
environment:
php: 8.2
mysql: false
node: false
postgresql: false
mongodb: false
elasticsearch: false
redis: false
memcached: false
neo4j: false
rabbitmq: false
nodes:
analysis:
tests:
override:
- php-scrutinizer-run
dependencies:
before:
- composer self-update
- composer update --no-interaction --prefer-dist --no-progress
tests:
before:
-
command: composer test:coverage
coverage:
file: 'build/logs/clover.xml'
format: 'clover'