mirror of
https://github.com/silverstripe/silverstripe-translatable
synced 2024-10-22 11:05:59 +02:00
27 lines
723 B
YAML
27 lines
723 B
YAML
# See https://github.com/silverstripe/silverstripe-travis-support for setup details
|
|
|
|
language: php
|
|
|
|
dist: trusty
|
|
|
|
matrix:
|
|
include:
|
|
- php: '7.1'
|
|
env: DB=PGSQL CORE_RELEASE=3.7
|
|
- php: '7.1'
|
|
env: DB=MYSQL CORE_RELEASE=3.7
|
|
- php: '7.2'
|
|
env: DB=MYSQL CORE_RELEASE=3.7
|
|
- php: '7.3'
|
|
env: DB=MYSQL CORE_RELEASE=3.7
|
|
|
|
before_script:
|
|
- phpenv rehash
|
|
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
|
|
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
|
|
- cd ~/builds/ss
|
|
|
|
script:
|
|
- vendor/bin/phpunit translatable/tests
|
|
- vendor/bin/phpcs --encoding=utf-8 --tab-width=4 --standard=translatable/tests/phpcs -np translatable
|