Sha256: 2a22ae188a1a2a06994600eee759402ac2a748e0d610ee11d49094db546db8d7

Contents?: true

Size: 1020 Bytes

Versions: 3

Compression:

Stored size: 1020 Bytes

Contents

aliasses:
  - &step_restore_vendor_cache
    restore_cache:
      keys:
        - birdspotting-vendor-{{ .Branch }}-{{ .Revision }}
        - birdspotting-vendor-{{ .Branch }}
        - birdspotting-vendor-
  - &step_save_vendor_cache
    save_cache:
      key: birdspotting-vendor-{{ .Branch }}-{{ .Revision }}
      paths: [ vendor/bundle ]


version: 2

jobs:
  test:
    docker:
      - image: circleci/ruby:2.4-jessie-node
    steps:
      - checkout
      - *step_restore_vendor_cache
      - run:
          name: Install Ruby dependencies
          command: bundle install --path vendor/bundle --jobs=2
      - *step_save_vendor_cache
      - run:
          name: Run RSpec suite
          command: |
            bundle exec rspec \
              --format progress \
              --format RspecJunitFormatter --out /tmp/test-results/rspec.xml
          environment:
            RAILS_ENV: test
      - store_test_results:
          path: /tmp/test-results

workflows:
  version: 2

  test:
    jobs:
      - test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
birdspotting-0.1.2 .circleci/config.yml
birdspotting-0.1.1 .circleci/config.yml
birdspotting-0.1.0 .circleci/config.yml