mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-22 17:06:39 -06:00
31 lines
681 B
YAML
31 lines
681 B
YAML
language: php
|
|
php:
|
|
- 7.1
|
|
|
|
cache:
|
|
directories:
|
|
- vendor
|
|
- $HOME/.composer/cache
|
|
|
|
install:
|
|
- rm composer.lock
|
|
- composer update --no-scripts
|
|
- cp .env.testing .env
|
|
- php artisan clear-compiled
|
|
- php artisan env
|
|
- cp .env.testing .env
|
|
- wget -q https://github.com/firefly-iii/test-data/raw/master/storage/database.sqlite -O storage/database/database.sqlite
|
|
- mkdir -p build/logs
|
|
|
|
script:
|
|
- phpunit -c phpunit.coverage.xml
|
|
|
|
after_success:
|
|
- travis_retry php vendor/bin/php-coveralls -x storage/build/clover-all.xml
|
|
- bash <(curl -s https://codecov.io/bash) -f storage/build/clover-all.xml
|
|
|
|
# safelist
|
|
branches:
|
|
only:
|
|
- develop
|
|
- master |