Sha256: e9e3ee8ee8aa5dd2c282e7b347b10ff9a945b75ce97ae04c1e34876d40ed35f5
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
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-ruby3.0: docker: - image: circleci/ruby:3.0-buster <<: *common_steps test-ruby2.7: docker: - image: circleci/ruby:2.7-buster <<: *common_steps 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-ruby3.0 - test-ruby2.7 - test-ruby2.6 - test-ruby2.5 - test-ruby2.4 cron: jobs: - test-ruby3.0 - test-ruby2.7 - 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 |
---|---|
middleman-somemoji-0.2.0 | .circleci/config.yml |