Sha256: 93fdab428b18c58f19b3868f7bf462f2f558f18856b3b23f66d79f1226a04bfc

Contents?: true

Size: 609 Bytes

Versions: 2

Compression:

Stored size: 609 Bytes

Contents

version: 2.1
jobs:
  run-tests:
    docker:
      - image: circleci/ruby:2.4.6-jessie
    steps:
      - checkout
      - restore_cache:
          keys:
            - gems-v2-{{ checksum "Gemfile.lock" }}
            - gems-v2-
      - run: bundle check || bundle install
      - persist_to_workspace:
          root: .
          paths:
            - Gemfile
            - Gemfile.lock
            - .snyk
      - save_cache:
          key: gems-v2--{{ checksum "Gemfile.lock" }}
          paths:
            - vendor/bundle
      - run: bundle exec rake spec

workflows:
  tests:
    jobs:
      - run-tests

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
omniauth-auth0-2.3.1 .circleci/config.yml
omniauth-auth0-2.3.0 .circleci/config.yml