mirror of
https://github.com/awesomedata/awesome-public-datasets.git
synced 2024-04-18 07:30:58 +08:00
9 lines
267 B
YAML
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
|