jam-cloud/build

18 lines
236 B
Bash
Executable File

#!/bin/bash
echo "updating dependencies"
bundle install
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"