Sha256: b4075d25147a6fb0a245350b3be5372cd1f49c92292d0bb7ca2d967d82ed4723
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
version: 2.1 executors: default: working_directory: ~/repo description: The official CircleCI Ruby Docker image docker: - image: circleci/ruby:2.7.0 caches: - &bundle_cache_full v2-repo-{{ checksum "Gemfile.lock" }} - &bundle_cache v2-repo- commands: defaults: steps: - checkout - restore_cache: keys: - *bundle_cache_full - *bundle_cache - run: bundle config set path 'vendor/bundle' - save_cache: key: *bundle_cache_full paths: - vendor/bundle run_linters: description: command to start linters steps: - run: name: rubocop command: bundle exec rubocop - run: name: fasterer command: bundle exec fasterer run_specs: steps: - run: name: run specs command: | mkdir /tmp/test-results TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)" bundle exec rspec --format progress \ --out /tmp/test-results/rspec.xml \ $TEST_FILES jobs: lintering: executor: default steps: - defaults - run_linters run_specs: executor: default steps: - defaults - run_specs workflows: version: 2 build: jobs: - lintering - run_specs: requires: - lintering
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
codebreaker_sn-0.1.0 | .circleci/config.yml |