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.187.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.186.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.185.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.185.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.184.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.184.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.183.2 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.183.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.183.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.182.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.181.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.180.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.180.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.179.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.178.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.177.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.176.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.175.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.174.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.173.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml