I have a few branches in my repo and I have the .travis.yml
file in a branch A
(master
branch does not have this file). But travis-CI is not starting the build for branch A
. What do I need to do to run travis for this branch? When I create a Pull Request from some other branch to master
, then travis starts the build.
P.S. I turned off/on Build only if .travis.yml is present
but it did not help. Also I can't see any branches in Branches
tab. I added
branches:
only:
-A
-master
in the .travis.yml
, but it too did not help.