paste.chapril.org-privatebin/.travis.yml

36 lines
845 B
YAML
Raw Normal View History

2016-05-22 17:09:00 +02:00
language: php
sudo: false
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- '7.1'
2017-12-03 15:39:05 +01:00
- '7.2'
# as this is a php project, node.js v4 (for JS unit testing) isn't installed
install:
- if [ ! -d "$HOME/.nvm" ]; then mkdir -p $HOME/.nvm && curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | NVM_METHOD=script bash; fi
- source ~/.nvm/nvm.sh && nvm install --lts
before_script:
- composer install -n
- npm install -g mocha
- cd js && npm install
2016-05-22 17:09:00 +02:00
script:
2018-01-02 09:38:28 +01:00
- mocha
- cd ../tst && ../vendor/bin/phpunit
after_script:
2018-01-02 09:38:28 +01:00
- ../vendor/bin/test-reporter --coverage-report log/coverage-clover.xml
- cd .. && vendor/bin/codacycoverage clover tst/log/coverage-clover.xml
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/.composer/cache/vcs
2018-01-02 07:14:58 +01:00
- $HOME/.nvm
- $HOME/.npm
- js/node_modules