mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 18:41:40 +08:00
31 lines
643 B
YAML
31 lines
643 B
YAML
language: php
|
|
php:
|
|
- 7.0
|
|
|
|
node_js:
|
|
- "4.1.2"
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- vendor
|
|
|
|
addons:
|
|
mariadb: '10.0'
|
|
|
|
before_install:
|
|
- npm install -g npm@latest
|
|
|
|
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 |