Sha256: a21f9318f037425a32275db641791b1fe5415ee9172dd2d6f605a62d6776d625
Contents?: true
Size: 736 Bytes
Versions: 5
Compression:
Stored size: 736 Bytes
Contents
version: 2 jobs: build: working_directory: ~/project docker: - image: circleci/ruby:<%= config.dig(:versions, :ruby) %> environment: BUNDLE_JOBS: 3 BUNDLE_RETRY: 3 BUNDLE_PATH: vendor/bundle EDITOR: vim RAILS_ENV: test steps: - checkout - run: name: Bundler Install command: | gem update --system bundle check || bundle install gem install rails - run: name: Rake Run command: bundle exec rake <%- if config.dig(:generate, :code_climate) -%> - run: name: Code Climate Analyze command: bundle exec codeclimate-test-reporter <%- end -%>
Version data entries
5 entries across 5 versions & 1 rubygems