17 lines
221 B
Plaintext
17 lines
221 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
echo "updating dependencies"
|
||
|
|
bundle update
|
||
|
|
echo "running rspec tests"
|
||
|
|
bundle exec rspec
|
||
|
|
|
||
|
|
if [ "$?" = "0" ]; then
|
||
|
|
echo "tests completed"
|
||
|
|
else
|
||
|
|
echo "tests failed."
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
echo "build complete"
|
||
|
|
|