forked from pluginkollektiv/antivirus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (31 loc) · 770 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
32
33
34
35
36
37
38
39
language: php
php:
- 5.2
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
env:
- WP_VERSION=nightly WP_MULTISITE=0
- WP_VERSION=nightly WP_MULTISITE=1
# Clones WordPress and configures our testing environment.
before_script:
# Setup Coveralls
- phpenv local 5.5
- composer install --no-interaction
- phpenv local --unset
- npm install
- bash bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1 $WP_VERSION
script:
- grunt checktextdomain
- vendor/bin/phpcs -n --report=emacs --standard=phpcs.ruleset.xml antivirus.php
- phpunit --coverage-clover clover.xml
after_script:
# Push coverage off to Codecov
- bash <(curl -s https://codecov.io/bash)