Sha256: 4a2d2d3b55fbb66c9e22722bd59251645e7b6877d7fde14b0cbeba5e56149df5
Contents?: true
Size: 1.14 KB
Versions: 4
Compression:
Stored size: 1.14 KB
Contents
defaults: &defaults working_directory: ~/truemail docker: - image: circleci/ruby:2.5.0-node references: restore_bundle_cache: &restore_bundle_cache restore_cache: keys: - truemail-{{ checksum "truemail.gemspec" }} bundle_install: &bundle_install run: name: Installing gems command: bundle install --path vendor/bundle save_bundle_cache: &save_bundle_cache save_cache: key: truemail-{{ checksum "truemail.gemspec" }} paths: - vendor/bundle version: 2 jobs: linters: <<: *defaults steps: - checkout - <<: *restore_bundle_cache - <<: *bundle_install - <<: *save_bundle_cache - run: name: Running overcommit command: | bundle exec overcommit -s SKIP=AuthorEmail,AuthorName bundle exec overcommit -r tests: <<: *defaults steps: - checkout - <<: *restore_bundle_cache - <<: *bundle_install - <<: *save_bundle_cache - run: name: Running tests command: bundle exec rspec workflows: version: 2 build: jobs: - linters - tests
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
truemail-0.1.1.3 | .circleci/config.yml |
truemail-0.1.1.2 | .circleci/config.yml |
truemail-0.1.1 | .circleci/config.yml |
truemail-0.1.0 | .circleci/config.yml |