Skip to content

Commit 656a7d3

Browse files
committedJul 16, 2019
travis config, editorconfig and update gitignore for coverage files
1 parent dd41bdc commit 656a7d3

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed
 

‎.editorconfig

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[*]
2+
indent_style = space
3+
indent_size = 4
4+
root = true
5+
6+
[*.yml]
7+
indent_style = space
8+
indent_size = 2

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
vendor
22
composer.lock
3+
coverage-html
4+
coverage.xml

‎.travis.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: php
2+
3+
php:
4+
- '7.1'
5+
- '7.2'
6+
- '7.3'
7+
8+
before_script:
9+
- travis_retry composer self-update
10+
- travis_retry composer install --no-interaction --prefer-source --dev
11+
12+
script:
13+
- vendor/bin/phpunit -c phpunit.xml --coverage-clover=coverage.xml
14+
15+
after_success:
16+
- bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)
Please sign in to comment.