Skip to content

Commit cb3ea16

Browse files
committed
Enable CI services
1 parent ee342ba commit cb3ea16

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.scrutinizer.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
tools:
2+
external_code_coverage:
3+
timeout: 600

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: php
2+
php:
3+
- 7.2
4+
- 7.3
5+
- 7.4
6+
7+
jobs:
8+
fast_finish: true
9+
10+
install:
11+
- composer install --prefer-source
12+
13+
script: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
14+
15+
after_script:
16+
- vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover

0 commit comments

Comments
 (0)