I installed drone 0.4 version to aws and integrated with my private bitbucket repositories. Everyting is working as it should be. There is my .drone.yml file
build:
image: phpunit/phpunit
cache:
- vendor
commands:
- echo Building Started
- composer install
- phpunit
My commits are successfully build with unit tests, but my badges always looks like "build|none". Do I have to add anything else for that.
Thanks for help