mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
19 lines
507 B
YAML
19 lines
507 B
YAML
language: php
|
|
php:
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
- 7.1
|
|
sudo: false
|
|
before_script:
|
|
- npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev
|
|
- mysql -u root -e "CREATE DATABASE rhymix"
|
|
- mysql -u root -e "SET PASSWORD FOR 'travis'@'localhost' = PASSWORD('travis')"
|
|
- php -S localhost:8000 &
|
|
- wget http://codeception.com/releases/2.1.11/codecept.phar
|
|
script:
|
|
- php codecept.phar build
|
|
- php codecept.phar run -d --fail-fast --env travis
|
|
- grunt lint
|
|
notifications:
|
|
email: false
|