Sha256: 235a2c96901c6ace4965ce7e244c7687cbb5f359b1faecaa77ebafe96f311eb0

Contents?: true

Size: 530 Bytes

Versions: 2

Compression:

Stored size: 530 Bytes

Contents

version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.5.1
    steps:
      - checkout
      - restore_cache:
          keys:
          - v1-gems-{{ checksum "Gemfile.lock" }}
          - v1-gems-
      - run:
          name: Bundle Install
          command: bundle check || bundle install
      - save_cache:
          key: v1-gems-{{ checksum "Gemfile.lock" }}
          paths:
            - vendor/bundle
      - run:
          command: bundle exec rspec
      - store_test_results:
          path: test_results

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
head_music-0.23.0 .circleci/config.yml
head_music-0.22.0 .circleci/config.yml