#!/bin/sh
# Run all tests

set -e

echo "Jekyll version: $(bundle exec jekyll --version)"

echo "Running Ruby tests..."
bundle exec rspec

echo "Running Ruby style tests..."
script/fmt --display-style-guide

echo "Building the default site..."
script/test-site
