-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from clue-labs/php7.4
Test against PHP 7.4 and simplify test matrix
- Loading branch information
Showing
2 changed files
with
56 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,35 @@ | ||
language: php | ||
|
||
php: | ||
# - 5.3 # requires old distro, see below | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- 7.1 | ||
- 7.2 | ||
- hhvm # ignore errors, see below | ||
|
||
# lock distro so future defaults will not break the build | ||
dist: trusty | ||
|
||
matrix: | ||
include: | ||
- php: 5.3 | ||
dist: precise | ||
- php: 5.4 | ||
- php: 5.5 | ||
- php: 5.6 | ||
- php: 7.0 | ||
- php: 7.1 | ||
- php: 7.2 | ||
- php: 7.3 | ||
- php: 7.4 | ||
- name: "Build phar" | ||
php: 7.2 | ||
script: composer build | ||
- php: 7.2 | ||
- name: "Test dependency installation" | ||
php: 7.2 | ||
install: [] | ||
script: composer install --dry-run --working-dir=tests/install-as-dep | ||
- php: hhvm-3.18 | ||
allow_failures: | ||
- php: hhvm | ||
- php: hhvm-3.18 | ||
|
||
sudo: false | ||
|
||
install: | ||
- composer install --prefer-source --no-interaction | ||
- composer install --no-interaction | ||
|
||
script: | ||
- vendor/bin/phpunit --coverage-text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters