Skip to content

Commit 9c380c4

Browse files
committed
travis: run tests for PHP 8.0 & 8.1 on bionic dist
1 parent 95a7cab commit 9c380c4

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

.travis.yml

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

33
php:
4-
- 5.4
5-
- 5.5
6-
- 5.6
7-
- 7.0
8-
- 7.1
9-
- hhvm
4+
- 8.0
5+
- 8.1
106

11-
matrix:
12-
allow_failures:
13-
- php: hhvm
7+
install:
8+
- travis_retry composer install --no-progress --prefer-dist
149

15-
before_script:
16-
# Install Nette Tester
17-
- composer install --no-interaction --prefer-source
18-
19-
script: vendor/bin/tester -p php -s tests
10+
script:
11+
- vendor/bin/tester -p php -s tests
2012

2113
after_failure:
2214
# Print *.actual content
2315
- for i in $(find tests -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done
16+
17+
dist: bionic
18+
19+
cache:
20+
directories:
21+
- $HOME/.composer/cache

0 commit comments

Comments
 (0)