diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2971c5b9..1d90a748 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -1,6 +1,18 @@ | |||
1 | language: php | 1 | language: php |
2 | |||
2 | php: | 3 | php: |
4 | - 5.4 | ||
3 | - 5.5 | 5 | - 5.5 |
6 | - 5.6 | ||
7 | |||
4 | branches: | 8 | branches: |
5 | only: | 9 | only: |
6 | - refactor \ No newline at end of file | 10 | - refactor |
11 | |||
12 | before_script: | ||
13 | - composer self-update | ||
14 | - echo 'date.timezone = "Europe/Paris"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini | ||
15 | |||
16 | script: | ||
17 | - ant -f app/build.xml prepare | ||
18 | - phpunit -c app --coverage-text | ||