Sha256: 1a19ce30228717e0b2fb10117dede083c2f0f40404bc516a831b41ffa3e0cbbd

Contents?: true

Size: 1.04 KB

Versions: 62

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

62 entries across 62 versions & 4 rubygems

Version Path
fastlane-2.202.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.201.2 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.201.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.201.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.201.0.rc3 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.201.0.rc2 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.201.0.rc1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.200.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.199.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.198.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.198.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.197.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.196.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.195.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.194.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.193.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.193.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.192.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.191.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.190.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml