Sha256: 7d5d20f6f93c31c9eec437f7849208a628a22e227ee39d01835c51c01d04e511

Contents?: true

Size: 1.26 KB

Versions: 2

Compression:

Stored size: 1.26 KB

Contents

version: 2

jobs:
  ruby-2.6.8:
    docker:
      - image: circleci/ruby:2.6.8
    steps:
      - checkout
      - run: rm Gemfile.lock
      - run: rm .ruby-version
      - run: bundle install
      - run: bundle exec appraisal install || true
      - run: bundle exec appraisal rake
      - run: bundle exec standardrb
      - run: bundle exec fasterer
      - run: bundle exec mdl README.md CHANGELOG.md
  ruby-2.7.4:
    docker:
      - image: circleci/ruby:2.7.4
    steps:
      - checkout
      - run: rm Gemfile.lock
      - run: rm .ruby-version
      - run: bundle install
      - run: bundle exec appraisal install || true
      - run: bundle exec appraisal rake
      - run: bundle exec standardrb
      - run: bundle exec fasterer
      - run: bundle exec mdl README.md CHANGELOG.md
  ruby-3.0.2:
    docker:
      - image: circleci/ruby:3.0.2
    steps:
      - checkout
      - run: rm Gemfile.lock
      - run: rm .ruby-version
      - run: bundle install
      - run: bundle exec appraisal install || true
      - run: bundle exec appraisal rake
      - run: bundle exec standardrb
      - run: bundle exec fasterer
      - run: bundle exec mdl README.md CHANGELOG.md

workflows:
  version: 2
  tests:
    jobs:
      - ruby-2.6.8
      - ruby-2.7.4
      - ruby-3.0.2

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
eve_online-0.42.0 .circleci/config.yml
eve_online-0.41.0 .circleci/config.yml