#!/bin/bash

set -e -o pipefail

echo 'Running linting...'
bundle exec rubocop --cache false

echo 'Running tests...'
bundle exec rspec --format progress --format RspecJunitFormatter --out spec/rspec.xml

echo 'Done!'
