.travis.yml 293 B

123456789101112131415161718
  1. ---
  2. sudo: false
  3. cache:
  4. - pip
  5. language: python
  6. python:
  7. - "2.7"
  8. - "3.5"
  9. install:
  10. - pip install -r requirements.txt
  11. script:
  12. # TODO(rhcarvalho): check syntax of other important entrypoint playbooks
  13. - ansible-playbook --syntax-check playbooks/byo/config.yml
  14. - cd utils && make ci