Add basic Travis CI integration

This adds a '.travis.yml' file, for testing against known PHP versions.
This commit is contained in:
Alex Palaistras 2017-10-06 12:57:35 +01:00
parent 8572d57eb3
commit a6232d9fa8
1 changed files with 17 additions and 0 deletions

17
.travis.yml Normal file
View File

@ -0,0 +1,17 @@
language: php
php:
- 5.6.31
- 7.1.10
sudo: required
services:
- docker
before_install:
- make docker-image
script:
- make docker-test PHP_VERSION="$TRAVIS_PHP_VERSION"
notifications:
email: false