Skip to content

Commit

Permalink
Merge pull request #7 from jakzal/php-7.3
Browse files Browse the repository at this point in the history
Run tests on php 7.3
  • Loading branch information
jakzal committed Dec 17, 2018
2 parents 2355a49 + 8a394ca commit 01a22b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ matrix:
- php: 7.1
env: EXECUTE_DEPLOYMENT=true
- php: 7.2
- php: 7.3
env: deps=low
fast_finish: true
before_install:
- phpenv config-rm xdebug.ini
- phpenv config-rm xdebug.ini || echo "XDebug is not enabled"
install:
- if [[ $deps = low ]]; then make update-min; else make install; fi
script:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ test-package: package test-package-tools
.PHONY: test-package

cs: tools/php-cs-fixer
tools/php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi fix
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi fix
.PHONY: cs

cs-fix: tools/php-cs-fixer
tools/php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
.PHONY: cs-fix

deptrac: tools/deptrac
Expand Down

0 comments on commit 01a22b4

Please sign in to comment.