Skip to content

Commit ae3c1e4

Browse files
author
Ravishanker Kusuma
committed
travis.yml added
1 parent e912de3 commit ae3c1e4

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.travis.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
language: php
2+
3+
php:
4+
- 5.5
5+
- 5.6
6+
- 7.0
7+
- hhvm
8+
9+
# This triggers builds to run on the new TravisCI infrastructure.
10+
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
11+
sudo: false
12+
13+
before_script:
14+
- travis_retry composer self-update
15+
- travis_retry composer install --no-interaction --prefer-source
16+
- travis_retry composer require satooshi/php-coveralls --dev
17+
18+
script:
19+
- mkdir -p build/logs
20+
- vendor/bin/phpunit
21+
- vendor/bin/phpcs src --standard=psr2 -sp
22+
23+
after_script:
24+
- vendor/bin/coveralls -v
25+

0 commit comments

Comments
 (0)