awesome-public-datasets/.travis.yml
2015-10-12 19:20:43 -07:00

9 lines
267 B
YAML

language: bash
sudo: false
before_install:
- set -e
script:
- ag -o '([^\s<>]+://[^\s<>]+)' README.rst | while read url; do if [[ "$url" != '' ]]; then echo "$url"; curl --output /dev/null --silent --head --fail --location --insecure "$url" || exit 1; fi; done