Skip to content

Commit 65f66eb

Browse files
committed
Update Travis CI settings
- define PHP versions as string in yaml - remove not needed caches - remove ocular upload (we do run tests on scrutinizer directly) - use phpunit from vendor dir Signed-off-by: Michal Čihař <michal@cihar.com>
1 parent 641f59c commit 65f66eb

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.travis.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
language: php
22

33
php:
4-
- 5.3
5-
- 5.4
6-
- 5.5
7-
- 5.6
8-
- 7.0
9-
- 7.1
10-
- nightly
11-
- hhvm
4+
- "5.3"
5+
- "5.4"
6+
- "5.5"
7+
- "5.6"
8+
- "7.0"
9+
- "7.1"
10+
- "hhvm"
11+
- "nightly"
1212

1313
matrix:
1414
fast_finish: true
1515
allow_failures:
16-
- php: nightly
16+
- php: "nightly"
1717

1818
sudo: false
1919

@@ -33,5 +33,6 @@ after_success:
3333
cache:
3434
directories:
3535
- $HOME/.composer/cache
36-
- vendor
37-
- ocular.phar
36+
37+
script:
38+
- ./vendor/bin/phpunit --configuration phpunit.xml

0 commit comments

Comments
 (0)