Travis fails finding my .travis.yml

travis-ci

Solution

It was happening probably because you renamed the repo on GitHub.

What I did in order to fix the problem is to go in Travis `Accounts` section, press the `Sync` button and then push another commit to the repo.

Problem

I got a warning log like this and my builds have been failed. ``` WARNING: We were unable to find a .travis.yml file. This may not be what you want. Build will be run with default settings. ``` But there have existed .travis.yml in my repo. This issue seems to be caused after I changed my repo name on Github. (Before changes it, Travis could detect my .travis.yml) My environment is there: https://travis-ci.org/PizzaFactory/mRDT How to fix this issue?

Original source