Sha256: 33d4748a4dec71b2ef5f63661cebfc96d8e75628cc34dac87babe9e097324c50

Contents?: true

Size: 476 Bytes

Versions: 4

Compression:

Stored size: 476 Bytes

Contents

version: 2
jobs:
  build:
    environment:
      RAILS_ENV: test

    docker:
    - image: circleci/ruby:2.5.5

    steps:
    - checkout

    - restore_cache:
        keys:
        - v2-dependencies-{{ .Branch }}
        - v2-dependencies-master
        - v2-dependencies-

    - run: bundle install --path=vendor/bundle

    - save_cache:
        key: v2-dependencies-{{ .Branch }}
        paths:
        - vendor/bundle

    - run: bundle exec rspec --format progress spec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
state_of_the_nation-2.0.0 .circleci/config.yml
state_of_the_nation-1.1.6 .circleci/config.yml
state_of_the_nation-1.1.5 .circleci/config.yml
state_of_the_nation-1.1.4 .circleci/config.yml