From: Dan Brown Date: Mon, 2 May 2016 11:26:09 +0000 (+0100) Subject: Added travis CI file X-Git-Tag: v0.10.0~1^2~9^2~2 X-Git-Url: http://source.bookstackapp.com/bookstack/commitdiff_plain/0d5da2d9d4767f618dc60ff272ac9cc3f240ad2c Added travis CI file --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..7163e93d5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +language: php + +php: + - 7.0 + + +addons: + mariadb: '10.1' + +before_script: + - mysql -e 'create database `bookstack-test`;' + - composer config -g github-oauth.github.com $GITHUB_ACCESS_TOKEN + - phpenv config-rm xdebug.ini + - composer self-update + - composer install --prefer-dist --no-interaction + - npm install + - ./node_modules/.bin/gulp + - php artisan migrate --force -n --database=mysql_testing + - php artisan db:seed --force -n --class=DummyContentSeeder --database=mysql_testing + +script: + - vendor/bin/phpunit \ No newline at end of file