Sha256: 2d7b095aa719787d5895b90bde5969f8ef849957bab94a658522d628da94d04f

Contents?: true

Size: 906 Bytes

Versions: 1

Compression:

Stored size: 906 Bytes

Contents

version: 2.1

jobs:
  test:
    docker:
      - image: cimg/ruby:3.1.0
    environment:
      - BUNDLE_PATH: /home/circleci/bundle
    steps:
      - checkout
      - run:
          name: build checksum target
          command: |
            cat hanko.gemspec gemfiles/* > /tmp/gem_target
      - restore_cache:
          keys:
            - gem-202203151500-{{ checksum "/tmp/gem_target"  }}-{{ .Branch }}
            - gem-202203151500-{{ checksum "/tmp/gem_target"  }}-
            - gem-202203151500-
      - run:
          name: bundle install
          command: |
            bundle install
            bundle exec appraisal install
      - save_cache:
          key: gem-202203151500-{{ checksum "/tmp/gem_target"  }}-{{ .Branch }}
          paths: /home/circleci/bundle
      - run:
          name: test
          command: bundle exec appraisal rake test


workflows:
  ci:
    jobs:
      - test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hanko-0.2.3 .circleci/config.yml