mirror of
https://ghproxy.net/https://github.com/growella/update-check.git
synced 2026-02-24 00:29:35 +08:00
34 lines
556 B
YAML
34 lines
556 B
YAML
sudo: false
|
|
|
|
language: php
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: change
|
|
|
|
cache:
|
|
- composer
|
|
- $HOME/.composer/cache
|
|
|
|
env:
|
|
global:
|
|
- WP_CLI_BIN_DIR=/tmp/wp-cli-phar
|
|
|
|
matrix:
|
|
include:
|
|
- php: 7.1
|
|
env: WP_VERSION=latest
|
|
- php: 7.0
|
|
env: WP_VERSION=latest
|
|
- php: 5.6
|
|
env: WP_VERSION=latest
|
|
- php: 5.6
|
|
env: WP_VERSION=trunk
|
|
|
|
before_script:
|
|
- phpenv config-rm xdebug.ini
|
|
- composer validate
|
|
- bash bin/install-package-tests.sh
|
|
|
|
script: ./vendor/bin/behat --format progress --strict
|