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.

16 lignes
319 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" ]; then
  10. echo "running link validation..."
  11. awesome_bot ../README.md --allow-ssl --allow 403,302
  12. fi