Sha256: 37b054bb89514273f2b067abf79ca9d0d2c978bca3f803346939858d33b5d02e

Contents?: true

Size: 1019 Bytes

Versions: 2

Compression:

Stored size: 1019 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.6.5-stretch
    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

2 entries across 2 versions & 1 rubygems

Version Path
birdspotting-0.1.4 .circleci/config.yml
birdspotting-0.1.3 .circleci/config.yml