Bump version to 3.3.6
[kohana-core.git] / .travis.yml
blob3f9e63ab7e4074ad0f023e003120603a69e12a1b
1 sudo: false
3 language: php
5 # Only build the main develop/master branches - feature branches will be covered by PRs
6 branches:
7   only:
8     - /^[0-9\.]+\/(develop|master)$/
10 cache:
11   directories:
12     - $HOME/.composer/cache/files
14 php:
15   - 5.3
16   - 5.4
17   - 5.5
18   - 5.6
19   - 7.0
20   - hhvm
22 matrix:
23   include:
24     - php: 5.3
25       env: 'COMPOSER_PHPUNIT="lowest"'
27 before_script:
28   - composer self-update
29   - COMPOSER_ROOT_VERSION=3.3.x-dev composer install --prefer-dist --no-interaction
30   - if [ "$COMPOSER_PHPUNIT" = "lowest" ]; then COMPOSER_ROOT_VERSION=3.3.x-dev composer update --prefer-lowest --with-dependencies phpunit/phpunit; fi;
31   - vendor/bin/koharness
33 script:
34   - cd /tmp/koharness && ./vendor/bin/phpunit --bootstrap=modules/unittest/bootstrap.php modules/unittest/tests.php
36 notifications:
37   email: false