Sha256: 1d89f8695ceea10971b80b1eeb187f74ba51eca80c63e49bba24c88e7962faea

Contents?: true

Size: 901 Bytes

Versions: 2

Compression:

Stored size: 901 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 test
version: 2
jobs:
  test-ruby2.6:
    docker:
      - image: circleci/ruby:2.6-buster
    <<: *common_steps
  test-ruby2.5:
    docker:
      - image: circleci/ruby:2.5-buster
    <<: *common_steps
  test-ruby2.4:
    docker:
      - image: circleci/ruby:2.4-buster
    <<: *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

2 entries across 2 versions & 1 rubygems

Version Path
middleman-img_loading_attribute-0.3.0 .circleci/config.yml
middleman-img_loading_attribute-0.2.0 .circleci/config.yml