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.
|
- #!/bin/bash
- echo "running format validation..."
- ./validate_format.rb ../README.md
- if [[ $? != 0 ]]; then
- echo "format validation failed!"
- exit 1
- else
- echo "format validation passed!"
- fi
-
- if [ "$TRAVIS_BRANCH" == "master" ]; then
- echo "running link validation..."
- ./validate_links.rb ../README.md
- if [[ $? != 0 ]]; then
- echo "link validation failed!"
- exit 1
- else
- echo "link validation passed!"
- fi
- fi
|