Sha256: 268a46b342b473ae6877dc364948121a2354654a175a5587978d3dc20ee6f71a
Contents?: true
Size: 1.67 KB
Versions: 17
Compression:
Stored size: 1.67 KB
Contents
# To update the build configuration, edit the "builds" array below and run: # erb .circleci/config.yml.erb > .circleci/config.yml version: 2 jobs: build_2.4: docker: - image: circleci/ruby:2.4 steps: - checkout - run: name: Install bundler command: gem install bundler -v 2.1.4 - 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 build_2.5: docker: - image: circleci/ruby:2.5 steps: - checkout - run: name: Install bundler command: gem install bundler -v 2.1.4 - 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 build_2.6: docker: - image: circleci/ruby:2.6 steps: - checkout - run: name: Install bundler command: gem install bundler -v 2.1.4 - 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 workflows: version: 2 test: jobs: - build_2.4 - build_2.5 - build_2.6
Version data entries
17 entries across 17 versions & 1 rubygems