Sha256: 1a19ce30228717e0b2fb10117dede083c2f0f40404bc516a831b41ffa3e0cbbd

Contents?: true

Size: 1.04 KB

Versions: 63

Compression:

Stored size: 1.04 KB

Contents

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

    working_directory: ~/repo

    steps:
      - checkout

      # Download and cache dependencies
      - restore_cache:
          keys:
          - v1-dependencies-{{ checksum "Gemfile" }}
          # fallback to using the latest cache if no exact match is found
          - v1-dependencies-

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

      - save_cache:
          paths:
            - ./vendor
          key: v1-dependencies-{{ checksum "Gemfile" }}

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

      # collect reports
      - store_test_results:
          path: ~/repo/test-results
      - store_artifacts:
          path: ~/repo/test-results
          destination: test-results

Version data entries

63 entries across 63 versions & 4 rubygems

Version Path
fastlane_pricing_fix-2.212.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.212.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.212.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.211.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.210.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.210.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.209.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.209.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.208.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.207.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.206.2 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.206.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.206.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.205.2 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.205.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.205.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.204.3 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.204.2 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.204.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.204.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml