我在 Github 上有一个存储库,这是一个带有 PHPunit 测试套件(https://github.com/antodippo/ccmusicsearch)的 PHP Symfony 应用程序,并且 Travis CI 每次推送时都会正确检查构建(https://travis-ci .org/antodippo/ccmusicsearch/builds)。
我将工作服帐户链接到我的 Travis 和 Github 帐户,并以这种方式配置了我的 .travis.yml 文件:
language: php
php:
- 5.5
- 5.6
before_script:
- composer self-update
- composer install
script:
- mkdir -p build/logs
- phpunit -c app/phpunit.xml.dist
after_success:
- bin/coveralls -v
我把这行放在我的phpunit.xml.dist中:
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
但工作服剧照说没有构建(https://coveralls.io/github/antodippo)。
我忘记了什么?