woocommerce/.travis.yml

36 lines
861 B
YAML
Raw Normal View History

2014-09-01 06:03:52 +00:00
language: php
sudo: false
2017-08-22 10:02:32 +00:00
# Test main supported versions of PHP against latest WP.
php:
- 5.6
2015-12-08 18:26:14 +00:00
- 7.0
2016-12-05 07:14:56 +00:00
- 7.1
env:
- WP_VERSION=latest WP_MULTISITE=0 PHP_LATEST_STABLE=7.1
# Additional tests against stable PHP (min recommended version is 5.6) and past supported versions of WP.
2014-09-01 06:03:52 +00:00
matrix:
include:
2017-07-20 10:23:37 +00:00
- php: 5.3
2017-07-20 11:39:46 +00:00
env: WP_VERSION=latest WP_MULTISITE=0 PHP_LATEST_STABLE=7.1
2017-07-20 14:55:45 +00:00
dist: precise
2017-07-20 10:23:37 +00:00
- php: 5.2
2017-07-20 11:39:46 +00:00
env: WP_VERSION=latest WP_MULTISITE=0 PHP_LATEST_STABLE=7.1
2017-07-20 14:55:45 +00:00
dist: precise
2014-09-01 06:03:52 +00:00
before_script:
2017-09-26 12:24:11 +00:00
- export PATH="$HOME/.composer/vendor/bin:$PATH"
2017-10-09 20:31:15 +00:00
- if [[ $TRAVIS_PHP_VERSION == '7.1' ]]; then composer install; fi
2017-09-26 12:24:11 +00:00
- bash tests/bin/install.sh woocommerce_test root '' localhost $WP_VERSION
- bash tests/bin/travis.sh before
2014-09-01 06:03:52 +00:00
2016-08-27 14:18:14 +00:00
script:
2017-10-05 16:09:39 +00:00
- bash tests/bin/phpunit.sh
after_script:
- bash tests/bin/travis.sh after
2017-10-09 20:31:15 +00:00
- bash tests/bin/phpcs.sh