Sha256: 707c5fb3eb7a5f4a5c28eddbaedc66ce6058fc352f4bedd8ae62b4c148676919
Contents?: true
Size: 1.2 KB
Versions: 12
Compression:
Stored size: 1.2 KB
Contents
version: 2.1 executors: default: working_directory: ~/repo description: The official CircleCI Ruby Docker image docker: - image: circleci/ruby:2.7.2 cashes: - &bundle_caches_full v2-repo-{{ checksum "Gemfile.lock" }} - &bundle_cache v2-repo- commands: defaults: steps: - checkout - restore_cache: keys: - *bundle_caches_full - *bundle_cache - run: bundle install --path vendor/bundle - save_cache: key: *bundle_caches_full paths: - vendor/bundle run_linters: description: command to start linters steps: - run: name: rubucop command: bundle exec rubocop - run: name: fasterer command: bundle exec fasterer lib/ run_specs: steps: - run: name: run specs command: bundle exec rspec jobs: lintering: executor: default steps: - defaults - run_linters run_specs: executor: default steps: - defaults - run_specs workflows: version: 2.1 build: jobs: - lintering - run_specs: requires: - lintering
Version data entries
12 entries across 12 versions & 1 rubygems