Sha256: a4359c014ad2ed84a12942d1cfa663be5cb83db2e93f70bac36a1e3d5a81f6b1

Contents?: true

Size: 618 Bytes

Versions: 2

Compression:

Stored size: 618 Bytes

Contents

---
image: ruby:2.5

stages:
  - prepare
  - test

cache: &dependencies
  untracked: true
  key: ${CI_COMMIT_REF_SLUG}
  policy: pull
  paths:
    - 'vendor/'

before_script:
  - bundle install --path=vendor

# Bundle stage
# ======================================

bundle:
  stage: prepare
  script:
    - echo "This job only fills the cache"
  cache:
    <<: *dependencies
    policy: push

# Testing stage
# ======================================

rubocop:
  stage: test
  script: bundle exec rubocop
  dependencies:
    - bundle

rspec:
  stage: test
  script:
    - bundle exec rspec
  dependencies:
    - bundle

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cucumber-unused_css-0.1.1 .gitlab-ci.yml
cucumber-unused_css-0.1.0 .gitlab-ci.yml