32 lines
402 B
YAML
32 lines
402 B
YAML
|
language: php
|
||
|
php:
|
||
|
- '5.6'
|
||
|
- '7.0'
|
||
|
- '7.1'
|
||
|
- '7.2'
|
||
|
- '7.3'
|
||
|
- '7.4'
|
||
|
- nightly
|
||
|
|
||
|
before_script:
|
||
|
- composer self-update
|
||
|
- composer install
|
||
|
- mkdir build/logs -p
|
||
|
|
||
|
script:
|
||
|
- composer test
|
||
|
- composer cs-check
|
||
|
- php vendor/bin/security-checker security:check
|
||
|
|
||
|
after_script:
|
||
|
- rm -rf build/logs
|
||
|
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
- php: nightly
|
||
|
|
||
|
branches:
|
||
|
only:
|
||
|
- master
|
||
|
- dev
|