mirror of
https://ghproxy.net/https://github.com/elementor/activity-log.git
synced 2025-10-04 20:11:22 +08:00
24 lines
No EOL
570 B
YAML
24 lines
No EOL
570 B
YAML
# Travis CI Configuration File
|
|
|
|
# Tell Travis CI we're using PHP
|
|
language: php
|
|
|
|
# PHP version used in first build configuration.
|
|
php:
|
|
- 5.3
|
|
- 5.4
|
|
|
|
# WordPress version used in first build configuration.
|
|
env:
|
|
- WP_VERSION=latest WP_MULTISITE=0
|
|
- WP_VERSION=latest WP_MULTISITE=1
|
|
- WP_VERSION=4.0 WP_MULTISITE=0
|
|
- WP_VERSION=4.0 WP_MULTISITE=1
|
|
|
|
before_script:
|
|
- bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
script: phpunit --coverage-clover=coverage.xml |