Skip to content

Commit

Permalink
migrate to circle 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillshevch committed Aug 17, 2018
1 parent c327394 commit 62fd2c9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
25 changes: 25 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: 2
jobs:
build:
docker:
- image: circleci/ruby:2.4-node

steps:
- checkout

- restore_cache:
keys:
- api-struct-bundle-v2-{{ checksum "api_struct.gemspec" }}

- run:
name: Bundle Install
command: bundle check || bundle install

- save_cache:
key: api-struct-bundle-v2-{{ checksum "api_struct.gemspec" }}
paths:
- vendor/bundle

- run:
name: Run Rspec
command: bundle exec rspec
3 changes: 0 additions & 3 deletions circle.yml

This file was deleted.

0 comments on commit 62fd2c9

Please sign in to comment.