Sha256: 772e6dd477c3725d7a48eb8c8a0990a34b9ecab112096a5e90239f9cb853c166

Contents?: true

Size: 1.01 KB

Versions: 5

Compression:

Stored size: 1.01 KB

Contents

version: 2
references:
  steps: &steps
    - checkout

    - type: cache-restore
      key: airports-bundler-{{ checksum "airports.gemspec" }}

    - run: gem install bundler

    - run: bundle install --path vendor/bundle

    - type: cache-save
      key: airports-bundler-{{ checksum "airports.gemspec" }}
      paths:
        - vendor/bundle

    - type: shell
      command: |
        bundle exec rspec --profile 10 \
                          --format RspecJunitFormatter \
                          --out /tmp/test-results/rspec.xml \
                          --format progress \
                          spec

    - type: store_test_results
      path: /tmp/test-results

    - run: bundle exec rubocop
jobs:
  build-ruby24:
    docker:
      - image: ruby:2.4
    steps: *steps
  build-ruby25:
    docker:
      - image: ruby:2.5
    steps: *steps
  build-ruby26:
    docker:
      - image: ruby:2.6
    steps: *steps
workflows:
  version: 2
  tests:
    jobs:
      - build-ruby24
      - build-ruby25
      - build-ruby26

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
airports-1.6.1 .circleci/config.yml
airports-1.6.0 .circleci/config.yml
airports-1.5.0 .circleci/config.yml
airports-1.4.1 .circleci/config.yml
airports-1.4.0 .circleci/config.yml