From 5f5c9e4657730deef68962d7f53b75fa3363388b Mon Sep 17 00:00:00 2001 From: Abel Date: Tue, 19 Jul 2016 16:50:10 +0200 Subject: [PATCH] Implemented Travis-CI for Application Skeleton. --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b36fdd9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: php + +php: + - 7 + - 5.6 + +script: + - php vendor/bin/phpunit -v -c tests/phpunit.xml --coverage-text + +before_script: + - composer install \ No newline at end of file