Sha256: 9c99ef6f49a64277caf2ea800ae3cc16eaed2fd00a0a84ad05085f8d550eeb3c
Contents?: true
Size: 739 Bytes
Versions: 23
Compression:
Stored size: 739 Bytes
Contents
# To update the build configuration, edit the "builds" array below and run: # erb .circleci/config.yml.erb > .circleci/config.yml <% builds = %w(2.4 2.5 2.6) %> version: 2 jobs: <% builds.each do |ruby| %> build_<%= ruby %>: docker: - image: circleci/ruby:<%= ruby %> steps: - checkout - run: name: Bundle Install command: bundle install - run: name: Include standard tests command: git submodule update --init - run: name: Run rspec command: | bundle exec rspec --format documentation <% end %> workflows: version: 2 test: jobs: <% builds.each do |ruby| %> - build_<%= ruby %> <% end %>
Version data entries
23 entries across 23 versions & 1 rubygems