#!/bin/sh

set -e

export PATH="$HOME/.composer/vendor/bin:./bin:$PATH"

echo "Running unit tests..."
script/cibuild-phpunit

echo "Running Style checks..."
script/cibuild-phpcs
