mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-16 21:18:19 +01:00
39 lines
848 B
YAML
39 lines
848 B
YAML
language: php
|
|
dist: trusty
|
|
sudo: false
|
|
|
|
branches:
|
|
except:
|
|
- l10n_2.3
|
|
- l10n_2.4
|
|
|
|
before_install:
|
|
- cp .env.example .env
|
|
|
|
install:
|
|
- travis_retry composer install --no-interaction --no-suggest
|
|
|
|
jobs:
|
|
include:
|
|
# - stage: Security check
|
|
# script:
|
|
# - phpenv config-rm xdebug.ini || true
|
|
# - wget https://get.sensiolabs.org/security-checker.phar
|
|
# - php security-checker.phar security:check ./composer.lock
|
|
# php: 7.1
|
|
- stage: Unit tests
|
|
script:
|
|
- phpenv config-rm xdebug.ini || true
|
|
- vendor/bin/phpunit
|
|
php: 7.1
|
|
- stage: Unit tests
|
|
script:
|
|
- phpenv config-rm xdebug.ini || true
|
|
- vendor/bin/phpunit
|
|
php: 7.2
|
|
- stage: Unit tests
|
|
script:
|
|
- phpenv config-rm xdebug.ini || true
|
|
- vendor/bin/phpunit
|
|
php: 7.3
|