Skip to content

Commit

Permalink
Added tests for each symfony versions on travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
hshn committed Feb 17, 2016
1 parent 2edc480 commit 5ab0ea4
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: php

node_js:
- 0.10
- 0.12

php:
- 5.4
Expand All @@ -10,8 +10,24 @@ php:
- 7.0
- hhvm

before_script:
matrix:
fast_finish: true
include:
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.0.*
allow_failures:
- php: hhvm

before_install:
- composer selfupdate
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;

install:
- npm install
- composer install --dev --prefer-source
- composer update --prefer-source --no-interaction

script: npm test

0 comments on commit 5ab0ea4

Please sign in to comment.