Sha256: 4cdf336b8c172d91434e7a5b92c1716e5c291553ba443de105e6d822b49b8f70

Contents?: true

Size: 668 Bytes

Versions: 4

Compression:

Stored size: 668 Bytes

Contents

stages:
  - test
  - deploy

default:
  image: ruby:2.7
  tags:
    - gitlab-org
  before_script:
    - bundle --version
    - bundle install

workflow:
  rules:
    # For merge requests, create a pipeline.
    - if: '$CI_MERGE_REQUEST_IID'
    # For `master` branch, create a pipeline (this includes on schedules, pushes, merges, etc.).
    - if: '$CI_COMMIT_BRANCH == "master"'
    # For tags, create a pipeline.
    - if: '$CI_COMMIT_TAG'

styles:
  stage: test
  script:
    - bundle exec rubocop --debug --parallel

specs:
  stage: test
  script:
    - bundle exec rspec

include:
  - project: 'gitlab-org/quality/pipeline-common'
    file: '/ci/gem-release.yml'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gitlab-styles-6.1.0 .gitlab-ci.yml
gitlab-styles-6.0.0 .gitlab-ci.yml
gitlab-styles-5.4.0 .gitlab-ci.yml
gitlab-styles-5.3.0 .gitlab-ci.yml