Sha256: bbcb3619d4379bea62d41964a2238b3341b5236ba108216352413bd1eb069055
Contents?: true
Size: 1.4 KB
Versions: 6
Compression:
Stored size: 1.4 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: 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: 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: 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
6 entries across 6 versions & 1 rubygems