From dcdce081adac89767eccbc4e2ac64657d93b75d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Brzuchalski?= Date: Fri, 10 Jun 2016 13:25:33 +0200 Subject: [PATCH] Forgot .travis.yml --- .travis.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..33e73da --- /dev/null +++ b/.travis.yml @@ -0,0 +1,25 @@ +language: php + +php: + - 7.0 + - nightly + +sudo: false + +matrix: + allow_failures: + - php: hhvm + - php: nightly + +before_install: + - composer self-update + +install: + - composer install --prefer-dist --no-interaction + +script: + - bin/phpspec run --format=pretty --no-code-generation + - bin/phpcov merge --clover tests/coverage/clover.xml tests/coverage + +after_success: + - travis_retry php bin/coveralls -v \ No newline at end of file