forked from PascalKleindienst/octobercms-github-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (26 loc) · 820 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
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
before_script:
- git clone https://github.com/octobercms/october.git
- mkdir -p ./october/plugins/pkleindienst/githubprojects
- mv !(october) october/plugins/pkleindienst/githubprojects
- cd october
- travis_retry composer install --no-interaction --prefer-source
- cd plugins/pkleindienst/githubprojects
- composer install
script:
#- vendor/bin/phpcs --standard=psr2 --ignore=*/tests/*,*/vendor/* .
- ../../../vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- vendor/bin/test-reporter