Sha256: ecd191615bcc263849e07e86e5591cffc55e829cb3bb3af1cee566cbc52a4c6b

Contents?: true

Size: 561 Bytes

Versions: 2

Compression:

Stored size: 561 Bytes

Contents

# Ruby CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
#
version: 2
jobs:
  build:
    docker:
       - image: circleci/ruby:2.7-node-browsers
         environment:
           RUBYOPT: "-W:no-deprecated -W:no-experimental"

    working_directory: ~/repo

    steps:
      - checkout

      - run:
          name: install dependencies
          command: |
            bundle update --bundler
            bundle install --retry=3

      - run:
          name: run tests
          command: bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
todo_or_die-0.1.1 .circleci/config.yml
todo_or_die-0.1.0 .circleci/config.yml