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
335 B

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