We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7863686 commit 0b25c50Copy full SHA for 0b25c50
.travis.yml
@@ -0,0 +1,22 @@
1
+dist: trusty
2
+sudo: required
3
+
4
+language: php
5
6
+php:
7
+ - 7.1
8
9
+install:
10
+ - composer validate --no-check-all --no-check-publish
11
+ - composer install
12
13
+script: ./vendor/bin/phpunit --coverage-clover=coverage.xml Test/
14
15
+after_success:
16
+ - bash <(curl -s https://codecov.io/bash)
17
18
+cache:
19
+ apt: true
20
+ directories:
21
+ - $TRAVIS_BUILD_DIR/vendor
22
+ - $HOME/.composer/cache
0 commit comments