Setup CircleCI

This commit is contained in:
Pedro Piñera 2018-04-26 17:54:55 +02:00
parent 0ae39f9e12
commit 99767dc85d
1 changed files with 13 additions and 0 deletions

13
.circleci/config.yml Normal file
View File

@ -0,0 +1,13 @@
version: 2
jobs:
build:
macos:
xcode: "9.3.0"
steps:
- checkout
- run:
name: Install Bundle Dependencies
command: bundle install
- run:
name: Run tests
command: bundle exec rake test