forked from klein/klein.php
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request klein#341 from Rican7/chore/travis-ci-php-versions
Chore - Travis-CI PHP versions and enhanced configuration
- Loading branch information
Showing
1 changed file
with
14 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,26 @@ | ||
sudo: false | ||
|
||
language: php | ||
php: | ||
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- nightly | ||
- hhvm | ||
|
||
matrix: | ||
allow_failures: | ||
- php: 7.0 | ||
- php: nightly | ||
- php: hhvm | ||
fast_finish: true | ||
|
||
before_script: | ||
- composer install --prefer-dist --dev | ||
- composer install --prefer-dist | ||
|
||
script: | ||
- composer validate | ||
- ./vendor/bin/phpunit | ||
- ./vendor/bin/phpcs --standard=PSR2 --encoding=utf-8 -p src/ tests/ | ||
|
||
matrix: | ||
allow_failures: | ||
- php: hhvm | ||
fast_finish: true |