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 95a7cab commit 9c380c4Copy full SHA for 9c380c4
.travis.yml
@@ -1,23 +1,21 @@
1
language: php
2
3
php:
4
- - 5.4
5
- - 5.5
6
- - 5.6
7
- - 7.0
8
- - 7.1
9
- - hhvm
+ - 8.0
+ - 8.1
10
11
-matrix:
12
- allow_failures:
13
- - php: hhvm
+install:
+ - travis_retry composer install --no-progress --prefer-dist
14
15
-before_script:
16
- # Install Nette Tester
17
- - composer install --no-interaction --prefer-source
18
-
19
-script: vendor/bin/tester -p php -s tests
+script:
+ - vendor/bin/tester -p php -s tests
20
21
after_failure:
22
# Print *.actual content
23
- for i in $(find tests -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done
+
+dist: bionic
+cache:
+ directories:
+ - $HOME/.composer/cache
0 commit comments