Sha256: f83b13dae0bafe7e43e00154353b5bba4ed96f604dd14d05d03a961994a87779
Contents?: true
Size: 905 Bytes
Versions: 2
Compression:
Stored size: 905 Bytes
Contents
version: 2 jobs: test: working_directory: ~/calculated_attributes docker: - image: circleci/ruby:2.5 environment: GEM_HOME: ~/calculated_attributes/vendor/bundle steps: - checkout - restore_cache: key: dependency-cache-{{ checksum "calculated_attributes.gemspec" }} - run: name: bundle-install command: bundle check || bundle install --jobs=4 --retry=3 - run: name: appraisal-install command: bundle exec appraisal install - save_cache: key: dependency-cache-{{ checksum "calculated_attributes.gemspec" }} paths: - ./vendor/bundle - run: name: appraisal-rspec command: bundle exec appraisal rspec - run: name: rubocop command: bundle exec rubocop workflows: version: 2 test: jobs: - test
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
calculated_attributes-0.5.0 | .circleci/config.yml |
calculated_attributes-0.4.0 | .circleci/config.yml |