mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-05 09:08:09 +01:00
24 lines
309 B
YAML
24 lines
309 B
YAML
language: php
|
|
php:
|
|
- 7
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
env:
|
|
matrix:
|
|
- LOWEST_DEPS=""
|
|
- LOWEST_DEPS="--prefer-lowest"
|
|
|
|
before_script:
|
|
- composer update --prefer-source $LOWEST_DEPS
|
|
|
|
script:
|
|
- ./bin/phpunit
|
|
- ./bin/sabre-cs-fixer fix . --dry-run --diff
|
|
|
|
sudo: false
|
|
|
|
cache: vendor
|