Skip to content

Instantly share code, notes, and snippets.

@vojtasvoboda
Created January 4, 2016 10:39
Show Gist options
  • Save vojtasvoboda/d063cf05263fefee854c to your computer and use it in GitHub Desktop.
Save vojtasvoboda/d063cf05263fefee854c to your computer and use it in GitHub Desktop.
Travis YML file example in OctoberCMS
# 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