Skip to content

Commit

Permalink
Integrate CircleCI and RSpec (#15)
Browse files Browse the repository at this point in the history
* Integrate RSpec and CircleCI

* Correct missing space in CircleCI config
  • Loading branch information
meganniu authored and Daniel Williams committed Nov 5, 2019
1 parent d19bad5 commit 7b96653
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ workflows:
- lint:
requires:
- install
- test:
requires:
- install
- deploy:
requires:
- lint
- test
- install
jobs:
lint:
Expand All @@ -28,6 +32,14 @@ jobs:
- run:
name: Run Rubocop
command: bundle exec rubocop
test:
docker:
- image: circleci/ruby:2.5.1
steps:
- checkout
- run:
name: Test
command: bundle install && bundle exec rspec
deploy:
executor: heroku/default
steps:
Expand Down

0 comments on commit 7b96653

Please sign in to comment.