Skip to content

Commit

Permalink
Make Travis work
Browse files Browse the repository at this point in the history
An Phan committed Dec 14, 2015
1 parent 22e027c commit d7bce41
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -3,20 +3,28 @@ language: php
php:
- 5.6
- 7.0
- hhvm

env:
APP_ENV: testing
CACHE_DRIVER: array
SESSION_DRIVER: array
QUEUE_DRIVER: sync
DB_CONNECTION: sqlite
APP_KEY: 16efa6c23c2e8c705826b0e66778fbe7
ADMIN_EMAIL: koel@example.com
ADMIN_NAME: Koel
ADMIN_PASSWORD: SoSecureK0el

branches:
only:
- master
- travis

before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install
- composer self-update
- composer install --prefer-source --no-interaction
- npm install

script: phpunit
script:
- phpunit
- npm test

0 comments on commit d7bce41

Please sign in to comment.