mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
15 lines
330 B
YAML
15 lines
330 B
YAML
language: php
|
|
php:
|
|
- 5.3
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- hhvm
|
|
before_script:
|
|
- travis_retry composer self-update
|
|
- npm install -g grunt-cli
|
|
- npm install
|
|
- if [ $(phpenv version-name) != "5.3" ]; then composer install; fi
|
|
script:
|
|
- grunt lint
|
|
- if [ $(phpenv version-name) != "5.3" ]; then ./vendor/bin/codecept run; fi
|