BookStack/.travis.yml

27 lines
602 B
YAML
Raw Normal View History

2016-05-02 11:26:09 +00:00
language: php
php:
- 7.0
cache:
directories:
- vendor
2016-05-02 11:26:09 +00:00
addons:
2016-05-02 11:50:17 +00:00
mariadb: '10.0'
2016-05-02 11:26:09 +00:00
before_install:
- npm install -g npm@latest
2016-05-02 11:26:09 +00:00
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