Files
firefly-iii/.travis.yml

32 lines
623 B
YAML
Raw Normal View History

2016-11-19 16:03:59 +01:00
language: php
php:
2017-01-24 11:49:05 +01:00
- 7.0
- 7.1
cache:
directories:
- vendor
- $HOME/.composer/cache
2016-11-19 16:03:59 +01:00
install:
- rm composer.lock
- composer update --no-scripts
2017-01-24 12:08:06 +01:00
- cp .env.testing .env
2016-11-19 16:03:59 +01:00
- php artisan clear-compiled
- php artisan optimize
- php artisan env
- cp .env.testing .env
2017-06-28 15:27:31 +02:00
- wget -q https://github.com/firefly-iii/test-data/raw/master/storage/database.sqlite -O storage/database/database.sqlite
2017-03-19 20:39:27 +01:00
- mkdir -p build/logs
2016-11-19 16:03:59 +01:00
script:
2017-05-03 21:22:01 +02:00
- phpunit -c phpunit.xml
2017-03-19 17:54:21 +01:00
2017-05-03 21:22:01 +02:00
#after_success:
# - travis_retry php vendor/bin/coveralls -x storage/build/clover.xml
# safelist
branches:
only:
- develop
- master