mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-03-15 21:44:46 +00:00

* fixed php versions used in travis #120 * fixed broken test #120 * updated developer docu
23 lines
426 B
YAML
23 lines
426 B
YAML
language: php
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache/files
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- php: 7.1
|
|
- php: 7.2
|
|
|
|
before_install:
|
|
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi
|
|
- composer self-update
|
|
|
|
install:
|
|
- composer install
|
|
|
|
script:
|
|
- vendor/bin/phpunit --exclude-group integration tests/
|
|
- vendor/bin/phpunit --group integration tests/
|