Created
January 4, 2016 10:39
-
-
Save vojtasvoboda/d063cf05263fefee854c to your computer and use it in GitHub Desktop.
Travis YML file example in OctoberCMS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# examle taken from https://github.com/krisawzm/demomanager-plugin | |
language: php | |
php: | |
- 5.4 | |
- 5.5 | |
- 5.6 | |
- 7.0 | |
- hhvm | |
matrix: | |
allow_failures: | |
- php: 7.0 | |
sudo: false | |
before_script: | |
- git clone https://github.com/octobercms/october.git | |
- mkdir -p ./october/plugins/krisawzm/demomanager | |
- mv !(october) october/plugins/krisawzm/demomanager | |
- cd october | |
- travis_retry composer install --no-interaction --prefer-source | |
script: vendor/bin/phpunit plugins/krisawzm/demomanager |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment