Sha256: e628338f9787d957e88b5fe864dd246fa27385f762929a2ec8aae042a7c23551

Contents?: true

Size: 1.04 KB

Versions: 711

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.4.2

    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

711 entries across 711 versions & 4 rubygems

Version Path
fastlane-2.156.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.156.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.155.3 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.155.2 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.155.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.155.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.154.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.153.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.153.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.152.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.151.2 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.151.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.151.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.150.3 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.150.2 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.150.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.150.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.150.0.rc7 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.150.0.rc6 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.150.0.rc5 fastlane/lib/fastlane/plugins/template/.circleci/config.yml