Skip to content

Commit ab2f5bc

Browse files
committed
Adds A Travis.yml File
Signed-off-by: Justin Yost <justin.yost@yostivanich.com>
1 parent 80c4e96 commit ab2f5bc

1 file changed

Lines changed: 48 additions & 0 deletions

File tree

.travis.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
language: php
2+
3+
php:
4+
- 5.4
5+
- 5.5
6+
- 5.6
7+
8+
env:
9+
global:
10+
- PLUGIN_NAME=ConfigRead
11+
- REQUIRE=""
12+
- PHPCS_ARGS="-p --extensions=php --standard=vendor/loadsys/loadsys_codesniffer/Loadsys --ignore=vendor/ ."
13+
14+
matrix:
15+
- DB=mysql CAKE_VERSION=2.5
16+
- DB=mysql CAKE_VERSION=2.6
17+
18+
matrix:
19+
fast_finish: true
20+
include:
21+
- php: 5.6
22+
env:
23+
- COVERALLS=1
24+
- DB=mysql
25+
- CAKE_VERSION=2.6
26+
- php: 5.6
27+
env:
28+
- DB=mysql
29+
- CAKE_VERSION=2.6
30+
- PHPCS=1
31+
allow_failures:
32+
33+
before_install:
34+
- composer self-update
35+
36+
before_script:
37+
- git clone -b master https://github.com/FriendsOfCake/travis.git --depth 1 ../travis
38+
- ../travis/before_script.sh
39+
- composer require --dev --no-interaction --prefer-source loadsys/loadsys_codesniffer=*
40+
41+
script:
42+
- ../travis/script.sh
43+
44+
after_success:
45+
- ../travis/after_success.sh
46+
47+
notifications:
48+
email: false

0 commit comments

Comments
 (0)