Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

17 lignes
315 B

  1. #!/bin/bash
  2. echo "running format validation..."
  3. ./validate.rb ../README.md
  4. if ["$?" == 0]; then
  5. echo "format validation PASSED"
  6. else
  7. echo "format validation FAILED"
  8. fi
  9. if [ "$TRAVIS_BRANCH" == "master" ]
  10. then
  11. echo "running link validation..."
  12. awesome_bot README.md --allow-ssl --allow 403,302
  13. fi