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.150.0.rc4 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.150.0.rc3 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.150.0.rc2 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.150.0.rc1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.149.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.149.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.148.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.148.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.147.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.146.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.146.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.145.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.144.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.143.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.142.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
pantograph-0.1.22 pantograph/lib/pantograph/plugins/template/.circleci/config.yml
pantograph-0.1.21 pantograph/lib/pantograph/plugins/template/.circleci/config.yml
pantograph-0.1.20 pantograph/lib/pantograph/plugins/template/.circleci/config.yml
pantograph-0.1.19 pantograph/lib/pantograph/plugins/template/.circleci/config.yml
pantograph-0.1.17 pantograph/lib/pantograph/plugins/template/.circleci/config.yml