Sha256: ab3a8fffa30df9573e861b782d7b72afc7669f824b83a43a8457ff9cde99d54d

Contents?: true

Size: 1.31 KB

Versions: 3

Compression:

Stored size: 1.31 KB

Contents

version: 2
workflows:
  version: 2
  commit:
    jobs:
      - build
  nightly:
    triggers:
      - schedule:
          cron: "0 0 * * *"
          filters:
            branches:
              only:
                - master
    jobs:
      - build
jobs:
  build:
    docker:
      - image: circleci/ruby:2.5
        environment:
          BUNDLE_JOBS: 3
          BUNDLE_RETRY: 3
          BUNDLE_PATH: vendor/bundle
    steps:
      - checkout
      - restore_cache:
          keys:
            - pco-url-bundle-v2-{{ checksum ".ruby-version" }}-{{ checksum "pco-url.gemspec" }}-{{ checksum "Appraisals" }}
            - pco-url-bundle-v2-{{ checksum ".ruby-version" }}-{{ checksum "pco-url.gemspec" }}
            - pco-url-bundle-v2-{{ checksum ".ruby-version" }}-
            - pco-url-bundle-v2-
      - run:
          name: Bundle Install
          command: bundle check || bundle install
      - run:
          name: Install appraisal dependencies
          command: bundle exec appraisal bundle check || bundle exec appraisal bundle install
      - save_cache:
          key: pco-url-bundle-v2-{{ checksum ".ruby-version" }}-{{ checksum "pco-url.gemspec" }}-{{ checksum "Appraisals" }}
          paths:
            - vendor/bundle
      - run:
          name: Run rspec
          command: bundle exec appraisal rspec --format progress

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pco-url-2.1.3 .circleci/config.yml
pco-url-2.1.2 .circleci/config.yml
pco-url-2.1.1 .circleci/config.yml