mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
- PHP versions need to be strings - https://docs.travis-ci.com/user/notifications/#configuring-email-notifications Also: tell editors like PhpStorm how the YAML needs to be formatted.
25 lines
354 B
YAML
25 lines
354 B
YAML
language: php
|
|
|
|
php:
|
|
- '7.3'
|
|
- '7.2'
|
|
- '7.1'
|
|
- '7.0'
|
|
- '5.6'
|
|
- '5.5'
|
|
|
|
before_install:
|
|
- composer update
|
|
|
|
script:
|
|
- composer validate
|
|
- vendor/bin/phpunit --version
|
|
- vendor/bin/phpunit --configuration tests/phpunit.xml
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- will.knauss@gmail.com
|
|
on_success: never
|
|
on_failure: always
|