Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. language: ruby
  2.  
  3. git:
  4. submodules: false
  5.  
  6. before_install:
  7. - echo "Installing test gems"
  8. - gem install yaml-lint
  9.  
  10. # skip install step
  11. install: true
  12.  
  13. script:
  14. - yaml-lint cloudformation/automate-demo.yml
  15.  
  16. after_success:
  17. - echo "Test Success - Branch($TRAVIS_BRANCH) Pull Request($TRAVIS_PULL_REQUEST) Tag($TRAVIS_TAG)"
  18. - echo "Cloud Formation Template YAML validated"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement