Sha256: 80ce2be58fa55e8d9319e7b234d46bdada067a7c261dda3caa53f448e430f869

Contents?: true

Size: 738 Bytes

Versions: 2

Compression:

Stored size: 738 Bytes

Contents

version: 2
jobs:
  build:
    docker:
       - image: circleci/ruby:2.4.1-node-browsers
    working_directory: ~/repo

    steps:
      - checkout

      - restore_cache:
          keys:
          - v1-dependencies-{{ checksum "Gemfile.lock" }}
          - v1-dependencies-

      - run:
          name: Install dependencies
          command: |
            bundle install --jobs=4 --retry=3 --path vendor/bundle

      - save_cache:
          paths:
            - ./vendor/bundle
          key: v1-dependencies-{{ checksum "Gemfile.lock" }}
        
      - run:
          name: Run tests
          command: |
            bundle exec rake test

      - run:
          name: Run linter
          command: |
            bundle exec rubocop

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
encrypted-environment-0.2.0 .circleci/config.yml
encrypted-environment-0.1.0 .circleci/config.yml