35 lines
487 B
YAML
35 lines
487 B
YAML
language: php
|
|
|
|
dist: trusty
|
|
|
|
sudo: false
|
|
|
|
php:
|
|
- 5.6
|
|
- 7.0
|
|
- 7.1
|
|
|
|
env:
|
|
- WP_VERSION=latest WP_MULTISITE=0
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- php: 7.2
|
|
env: WP_VERSION=latest WP_MULTISITE=0 RUN_PHPCS=1
|
|
|
|
before_script:
|
|
- bash tests/bin/install.sh wc_retailcrm_test root '' localhost $WP_VERSION
|
|
|
|
script:
|
|
- bash tests/bin/script.sh
|
|
|
|
deploy:
|
|
skip_cleanup: true
|
|
provider: script
|
|
script: make
|
|
on:
|
|
php: 7.2
|
|
branch: master
|
|
condition: "$DEPLOY = true"
|