Sha256: c628e81a3778023a370f7bd4419196a582fc04bd962005aae4c1ef7afecaab46

Contents?: true

Size: 1.03 KB

Versions: 5

Compression:

Stored size: 1.03 KB

Contents

# Ruby CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
#
version: 2
jobs:
  build:
    parallelism: 1
    docker:
      # specify the version you desire here
      - image: circleci/ruby:3.0.1
        environment:
          CODECLIMATE_REPO_TOKEN: b6626e682a8e97e0c5978febc92c3526792a2d018b41b8e1b52689da37fb7d92

    working_directory: ~/knapsack_pro-ruby

    steps:
      - checkout

      # Download and cache dependencies
      - restore_cache:
          keys:
          - v2-dependencies-bundler-{{ checksum "knapsack_pro.gemspec" }}
          # fallback to using the latest cache if no exact match is found
          - v2-dependencies-bundler-

      - run:
          name: install ruby dependencies
          command: |
            bundle install --jobs=4 --retry=3 --path vendor/bundle

      - save_cache:
          paths:
            - ./vendor/bundle
          key: v2-dependencies-bundler-{{ checksum "knapsack_pro.gemspec" }}

      # run tests!
      - run: bundle exec rspec spec

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
knapsack_pro-3.0.0 .circleci/config.yml
knapsack_pro-2.18.2 .circleci/config.yml
knapsack_pro-2.18.1 .circleci/config.yml
knapsack_pro-2.18.0 .circleci/config.yml
knapsack_pro-2.17.0 .circleci/config.yml