mirror of
https://github.com/public-apis/public-apis
synced 2024-12-05 07:45:17 +01:00
Merge pull request #3 from davemachado/err_branch
test pr for travis comment
This commit is contained in:
commit
ff8c0802b1
@ -1,11 +1,13 @@
|
|||||||
language: node_js
|
language: python
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email: false
|
||||||
before_install:
|
before_install:
|
||||||
- rvm install 2.4.0
|
- rvm install 2.4.0
|
||||||
|
- wget https://raw.githubusercontent.com/davemachado/build-bot/master/build_bot/requirements.txt
|
||||||
install:
|
install:
|
||||||
- gem install httparty ruby-progressbar
|
- gem install httparty ruby-progressbar
|
||||||
- wget -O build/build_bot https://raw.githubusercontent.com/davemachado/build-bot/master/build_bot/build_bot.py
|
- pip install build-bot
|
||||||
|
- pip install -r requirements.txt
|
||||||
before_script:
|
before_script:
|
||||||
- cd build
|
- cd build
|
||||||
script:
|
script:
|
||||||
|
10
README.md
10
README.md
@ -61,8 +61,8 @@ API | Description | Auth | HTTPS | Link |
|
|||||||
API | Description | Auth | HTTPS | Link |
|
API | Description | Auth | HTTPS | Link |
|
||||||
|---|---|---|---|---|
|
|---|---|---|---|---|
|
||||||
| AniList | AniList Anime | `OAuth` | No | [Go!](http://anilist-api.readthedocs.io/en/latest/) |
|
| AniList | AniList Anime | `OAuth` | No | [Go!](http://anilist-api.readthedocs.io/en/latest/) |
|
||||||
| Jikan | Unofficial MyAnimeList API | No | Yes | [Go!](https://jikan.me) |
|
| Jikan | unofficial MyAnimeList API | No | Yes | [Go!](https://jikan.me) |
|
||||||
| Kitsu | Anime discovery platform | `OAuth` | Yes | [Go!](http://docs.kitsu.apiary.io/) |
|
| Kitsu |Anime discovery platform | `OAuth` | Yes | [Go!](http://docs.kitsu.apiary.io/) |
|
||||||
| Studio Ghibli | Resources from Studio Ghibli films | No | Yes | [Go!](https://ghibliapi.herokuapp.com) |
|
| Studio Ghibli | Resources from Studio Ghibli films | No | Yes | [Go!](https://ghibliapi.herokuapp.com) |
|
||||||
|
|
||||||
### Anti-Malware
|
### Anti-Malware
|
||||||
@ -87,15 +87,15 @@ API | Description | Auth | HTTPS | Link |
|
|||||||
### Books
|
### Books
|
||||||
API | Description | Auth | HTTPS | Link |
|
API | Description | Auth | HTTPS | Link |
|
||||||
|---|---|---|---|---|
|
|---|---|---|---|---|
|
||||||
| British National Bibliography | Books | No | No | [Go!](http://bnb.data.bl.uk/) |
|
|British National Bibliography | Books | No | No | [Go!](http://bnb.data.bl.uk/) |
|
||||||
| Goodreads | Books | No | Yes | [Go!](https://www.goodreads.com/api) |
|
| Goodreads | Books | No | Yes | [Go!](https://www.goodreads.com/api) |
|
||||||
| Google Books | Books | `OAuth` | Yes | [Go!](https://developers.google.com/books/) |
|
| Google Books | Books | `OAuth` | Yes | [Go!](https://developers.google.com/books/) |
|
||||||
|
|
||||||
### Business
|
### Business
|
||||||
API | Description | Auth | HTTPS | Link |
|
API | Description | Auth | HTTPS | Link |
|
||||||
|---|---|---|---|---|
|
|---|---|---|---|---|
|
||||||
| mailgun | Email Service | `apiKey` | Yes | [Go!](https://www.mailgun.com/) |
|
| mailgun | Email Service | `apikey` | Yes | [Go!](https://www.mailgun.com/) |
|
||||||
| markerapi | Trademark Search | No | No | [Go!](http://www.markerapi.com/) |
|
| markerapi | Trademark Search | No | no | [Go!](http://www.markerapi.com/) |
|
||||||
|
|
||||||
### Calendar
|
### Calendar
|
||||||
API | Description | Auth | HTTPS | Link |
|
API | Description | Auth | HTTPS | Link |
|
||||||
|
@ -22,7 +22,7 @@ echo "running format validation..."
|
|||||||
./validate_format.rb $FORMAT_FILE > format_results.txt
|
./validate_format.rb $FORMAT_FILE > format_results.txt
|
||||||
if [[ $? != 0 ]]; then
|
if [[ $? != 0 ]]; then
|
||||||
echo "format validation failed!"
|
echo "format validation failed!"
|
||||||
cat format_results.txt | build_bot
|
cat format_results.txt | build_bot.py
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "format validation passed!"
|
echo "format validation passed!"
|
||||||
@ -31,7 +31,7 @@ echo "running link validation..."
|
|||||||
./validate_links.rb $LINK_FILE
|
./validate_links.rb $LINK_FILE
|
||||||
if [[ $? != 0 ]]; then
|
if [[ $? != 0 ]]; then
|
||||||
echo "link validation failed!"
|
echo "link validation failed!"
|
||||||
echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot
|
echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot.py
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "link validation passed!"
|
echo "link validation passed!"
|
||||||
|
Loading…
Reference in New Issue
Block a user