mirror of
https://github.com/willianjusten/awesome-audio-visualization.git
synced 2026-01-08 21:17:59 -05:00
Add travis integration
This commit is contained in:
17
.travis.yml
Normal file
17
.travis.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
language: ruby
|
||||
rvm:
|
||||
- 2.2
|
||||
|
||||
before_script:
|
||||
- bundle
|
||||
- chmod +x ci_script.sh
|
||||
|
||||
script: ./ci_script.sh
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
||||
env:
|
||||
global:
|
||||
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
|
||||
19
Gemfile.lock
Normal file
19
Gemfile.lock
Normal file
@@ -0,0 +1,19 @@
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
awesome_bot (1.7.1)
|
||||
faraday (~> 0.9.2)
|
||||
parallel (~> 1.6.1)
|
||||
faraday (0.9.2)
|
||||
multipart-post (>= 1.2, < 3)
|
||||
multipart-post (2.0.0)
|
||||
parallel (1.6.2)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
awesome_bot
|
||||
|
||||
BUNDLED WITH
|
||||
1.11.2
|
||||
7
ci_script.sh
Normal file
7
ci_script.sh
Normal file
@@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e # halt script on error
|
||||
|
||||
for file in topics/*.md
|
||||
do
|
||||
bundle exec awesome_bot $file --allow-redirect --set-timeout 10
|
||||
done
|
||||
Reference in New Issue
Block a user