You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.sh 335 B

6 years ago
12345678910111213141516
  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