.travis.yml 547 B

1234567891011121314151617181920212223242526
  1. language: php
  2. env:
  3. CODECEPTION_VERSION: '2.6.x-dev'
  4. php:
  5. - 7.1
  6. - 7.2
  7. - 7.3
  8. before_script:
  9. - wget https://robo.li/robo.phar
  10. - php robo.phar prepare
  11. - composer update
  12. script:
  13. - php robo.phar test cli
  14. - php robo.phar test "unit -g core"
  15. - php robo.phar test "tests/unit/Codeception/Constraints/"
  16. # run tests with 2.5 branch
  17. - CODECEPTION_VERSION=2.5.x-dev php robo.phar prepare
  18. - composer update
  19. - php robo.phar test cli
  20. - php robo.phar test "unit -g core"
  21. - php robo.phar test "tests/unit/Codeception/Constraints/"