Dan Brown

Merged ci_testing into master

1 +language: php
2 +
3 +php:
4 + - 7.0
5 +
6 +cache:
7 + directories:
8 + - node_modules
9 + - vendor
10 +
11 +addons:
12 + mariadb: '10.0'
13 +
14 +before_script:
15 + - mysql -e 'create database `bookstack-test`;'
16 + - composer config -g github-oauth.github.com $GITHUB_ACCESS_TOKEN
17 + - phpenv config-rm xdebug.ini
18 + - composer self-update
19 + - composer install --prefer-dist --no-interaction
20 + - npm install
21 + - ./node_modules/.bin/gulp
22 + - php artisan migrate --force -n --database=mysql_testing
23 + - php artisan db:seed --force -n --class=DummyContentSeeder --database=mysql_testing
24 +
25 +script:
26 + - vendor/bin/phpunit
...\ No newline at end of file ...\ No newline at end of file
1 # BookStack 1 # BookStack
2 2
3 -![CI Status](https://codeship.com/projects/395dbfb0-f274-0133-7932-6ec9db8dac2c/status?branch=master) 3 +[![Build Status](https://travis-ci.org/ssddanbrown/BookStack.svg)](https://travis-ci.org/ssddanbrown/BookStack)
4 4
5 A platform for storing and organising information and documentation. General information and documentation for BookStack can be found at https://www.bookstackapp.com/. 5 A platform for storing and organising information and documentation. General information and documentation for BookStack can be found at https://www.bookstackapp.com/.
6 6
......