Sha256: 47fe098700fd5906a615c7cc21e175421ac59add140fa0200ab00bf057af7c85
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
Contents
version: 2.1 update_bundler: &update_bundler run: name: update bundler command: gem update bundler bundle_install: &bundle_install run: name: bundle install command: bundle install --path vendor/bundle --jobs 4 git statusrestore_bundle_cache: &restore_bundle_cache restore_cache: key: cache-bundler-{{ checksum "Gemfile.lock" }} jobs: build: docker: - image: cimg/ruby:2.7.2 steps: - checkout - *restore_bundle_cache - *update_bundler - *bundle_install - save_cache: key: cache-bundler-{{ checksum "Gemfile.lock" }} paths: - vendor/bundle rubocop: docker: - image: cimg/ruby:2.7.2 steps: - checkout - *restore_bundle_cache - *update_bundler - *bundle_install - run: bundle exec rubocop rspec: docker: - image: cimg/ruby:2.7.2 steps: - checkout - *restore_bundle_cache - *update_bundler - *bundle_install - run: command: bundle exec rspec workflows: version: 2.1 rspec: jobs: - build - rubocop: requires: [build] - rspec: requires: [build]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
container_ship-0.1.6 | .circleci/config.yml |
container_ship-0.1.5 | .circleci/config.yml |