1
0
mirror of synced 2024-12-04 18:56:03 +03:00
DeliveryModuleBundle/.travis.yml

21 lines
363 B
YAML
Raw Normal View History

2020-08-18 17:36:06 +03:00
language: php
cache:
directories:
- $HOME/.composer/cache
php:
- '7.3'
before_script:
- flags="-o"
- composer install $flags
script:
2020-11-01 16:29:28 +03:00
- php vendor/bin/psalm
- php vendor/bin/php-cs-fixer fix --diff --dry-run --using-cache=no --config=.php_cs
- php vendor/bin/phpunit -c phpunit.xml
2020-08-18 17:36:06 +03:00
after_success:
2020-11-01 16:29:28 +03:00
- bash <(curl -s https://codecov.io/bash)