Merge pull request #787 from Chris53897/feature/travis

chore: remove travis
This commit is contained in:
Denis Sokolov
2025-11-25 22:22:55 +01:00
committed by GitHub
2 changed files with 1 additions and 36 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ tests/ export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.scrutinizer.yml export-ignore
.travis.yml export-ignore
phpunit.xml.dist export-ignore
CONTRIBUTING.md export-ignore
README.md export-ignore
-35
View File
@@ -1,35 +0,0 @@
language: php
env:
global:
SETUP=basic
matrix:
include:
- php: 5.5.9
dist: trusty
- php: 5.5
dist: trusty
- php: 5.6
dist: xenial
env: PHPUNIT_FLAGS="--coverage-clover build/logs/clover.xml"
after_success: wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
- php: 5.6
dist: xenial
env: SETUP=lowest
- php: hhvm-3.30
dist: trusty
before_install:
- travis_retry composer require "phpunit/phpunit:^5.7.27" --dev --no-update --no-interaction
- travis_retry composer require "mockery/mockery:^0.9.11" --dev --no-update --no-interaction
cache:
directories:
- "$HOME/.composer/cache"
install:
- if [[ "$SETUP" = "basic" ]]; then composer install --no-interaction --prefer-dist; fi
- if [[ "$SETUP" = "lowest" ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
script:
- vendor/bin/phpunit --verbose $PHPUNIT_FLAGS