forked from wpsharks/comet-cache-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (19 loc) · 879 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# ----------------------------------------------------------------------------------------------------------------------
# Container.
dist: trusty
sudo: required
language: generic
script: ./.travis.bash
# ----------------------------------------------------------------------------------------------------------------------
# Notifications.
notifications:
email: false # Disable.
slack: websharks:EpVKoMF6MQKjLKVw0CAX33Og
# ----------------------------------------------------------------------------------------------------------------------
# <custom> Begin custom matrix.
matrix: # Tests for Comet Cache WordPress plugin.
include: # Cover both ends of our PHP spectrum.
- env: CI_RUN=PHP_VERSION=7.0,WP=standard,WP_VERSION=latest
- env: CI_RUN=PHP_VERSION=7.0,WP=multisite,WP_VERSION=latest
fast_finish: true # Before allowed failures.
# </custom>