mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
24ea61b24c
https://docs.travis-ci.com/user/customizing-the-build/#Implementing-Complex-Build-Steps /cc #1145
10 lines
181 B
Bash
Executable file
10 lines
181 B
Bash
Executable file
#!/bin/bash
|
|
set -ev
|
|
|
|
echo "Running sinatra tests..."
|
|
bundle exec rake
|
|
|
|
echo "Running sinatra-contrib tests..."
|
|
cd sinatra-contrib
|
|
bundle install --jobs=3 --retry=3
|
|
bundle exec rake
|