Skip to content

Commit

Permalink
Merge pull request #38 from wata727/ci_against_php73
Browse files Browse the repository at this point in the history
CI against PHP 7.1.25, 7.2.13 and 7.3.0
  • Loading branch information
wata727 authored Dec 20, 2018
2 parents 86c539c + 25b4c30 commit e5620a2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2,184 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
vendor/
composer.lock
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/vendor/
composer.lock
15 changes: 11 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
language: php
php:
- 7.2.11
- 7.1.23
- 7.3.0
- 7.2.13
- 7.1.25
env:
matrix:
- dependencies=lowest
- dependencies=highest
before_script:
- phpenv config-rm xdebug.ini
- if php --ri xdebug >/dev/null; then phpenv config-rm xdebug.ini; fi
install:
- pecl install ast
- composer install
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --no-interaction; fi
- if [ "$dependencies" = "highest" ]; then composer update --no-interaction; fi
script:
- bin/pahout src
- vendor/bin/phpunit
Expand Down
Loading

0 comments on commit e5620a2

Please sign in to comment.