Sha256: d5dacb91726502b3d0ded174933130e15b3e0d7aee4f1ccb8ceeee30a7d0a75e
Contents?: true
Size: 1.69 KB
Versions: 1
Compression:
Stored size: 1.69 KB
Contents
version: 2 jobs: ruby-2.5.8: docker: - image: circleci/ruby:2.5.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 TODO.md ruby-2.6.6: docker: - image: circleci/ruby:2.6.6 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 TODO.md ruby-2.7.2: docker: - image: circleci/ruby:2.7.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 TODO.md ruby-3.0.0: docker: - image: circleci/ruby:3.0.0 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 TODO.md workflows: version: 2 tests: jobs: - ruby-2.5.8 - ruby-2.6.6 - ruby-2.7.2 - ruby-3.0.0
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.37.0 | .circleci/config.yml |