Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Travis not picking up new commits

Tags:

travis-ci

I have a travis build job configured at: https://travis-ci.org/caffeinated-expert/frisbee

I have been pushing commits but travis does not pick them up.

like image 416
casibbald Avatar asked Dec 08 '22 02:12

casibbald


1 Answers

That usually happens when you have syntax errors in your .travis.yml. You can check your travis config using the web app at http://lint.travis-ci.org/. (There's more information here)

When I run the .travis.yml from your development branch, I get

syntax error: (<unknown>): did not find expected '-' indicator while parsing a block collection at line 5 column 3

like image 190
jtilly Avatar answered Jan 14 '23 11:01

jtilly