Sha256: 4b7130d0760c6222433bdb8e176c35bdbdcf11599c39bbd9fb6bdbbfb8f444b1

Contents?: true

Size: 883 Bytes

Versions: 1

Compression:

Stored size: 883 Bytes

Contents

version: 2.1
jobs:
  build:
    working_directory: ~/project
    docker:
      - image: bkuhlmann/alpine-ruby:latest
    steps:
      - checkout

      - restore_cache:
          name: Gems Restore
          keys:
            - gem-cache-{{.Branch}}-{{checksum "Gemfile.lock"}}
            - gem-cache-

      - run:
          name: Gems Install
          command: |
            gem update --system
            bundle config set path "vendor/bundle"
            bundle install

      - save_cache:
          name: Gems Store
          key: gem-cache-{{.Branch}}-{{checksum "Gemfile.lock"}}
          paths:
            - vendor/bundle

      - run:
          name: Build
          command: bundle exec rake

<% if configuration.build_simple_cov %>
      - store_artifacts:
          name: SimpleCov Report
          path: ~/project/coverage
          destination: coverage
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubysmith-5.9.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb