Sha256: d7778f3f5573bea08c6592abc306670cf4b51a1b477b3dfac3970e4768f7b2a9

Contents?: true

Size: 896 Bytes

Versions: 1

Compression:

Stored size: 896 Bytes

Contents

common_steps: &common_steps
  working_directory: ~/repo
  steps:
    - checkout
    - run: gem install bundler --force
    - run:
        name: install dependencies
        command: |
          bundle install --jobs=4 --retry=3 --path vendor/bundle
    - run: bundle exec rake
version: 2
jobs:
  test-ruby2.6:
    docker:
      - image: rubylang/ruby:2.6-bionic
    <<: *common_steps
  test-ruby2.5:
    docker:
      - image: rubylang/ruby:2.5-bionic
    <<: *common_steps
  test-ruby2.4:
    docker:
      - image: rubylang/ruby:2.4-bionic
    <<: *common_steps
workflows:
  version: 2
  test:
    jobs:
      - test-ruby2.6
      - test-ruby2.5
      - test-ruby2.4
  cron:
    jobs:
      - test-ruby2.6
      - test-ruby2.5
      - test-ruby2.4
    triggers:
      - schedule:
          cron: "0 0 * * 0"
          filters:
            branches:
              only:
                - master

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
redcarpet-render-html_lazy_img-0.2.0 .circleci/config.yml