Sha256: 93dca441bffa14bdd41557550197f357863ac6ba1c76f8c7b14e2f98926be8e5
Contents?: true
Size: 882 Bytes
Versions: 10
Compression:
Stored size: 882 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: Rake command: bundle exec rake <% if configuration.build_simple_cov %> - store_artifacts: name: SimpleCov Report path: ~/project/coverage destination: coverage <% end %>
Version data entries
10 entries across 10 versions & 1 rubygems