Skip to content
This repository was archived by the owner on Nov 23, 2019. It is now read-only.

Commit f61617b

Browse files
committed
Created CI config files
1 parent 166e284 commit f61617b

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.scrutinizer.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
tools:
2+
external_code_coverage: true
3+
checks:
4+
php:
5+
code_rating: true
6+
duplication: true

.travis.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
language: php
2+
3+
branches:
4+
only:
5+
- master
6+
- develop
7+
8+
php:
9+
- 5.6
10+
- 7
11+
- 7.1
12+
13+
before_script:
14+
- composer self-update
15+
- composer install --no-interaction
16+
17+
script:
18+
- mkdir build
19+
- composer check
20+
21+
after_script:
22+
- wget https://scrutinizer-ci.com/ocular.phar
23+
- php ocular.phar code-coverage:upload --format=php-clover build/clover.xml
24+
25+
sudo: false

0 commit comments

Comments
 (0)