Sha256: f669bed99fc40de9756ce9f3e7f40720672acc56cd2a0a6f29d0f6a13f7df594

Contents?: true

Size: 721 Bytes

Versions: 4

Compression:

Stored size: 721 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 the default branch, create a pipeline (this includes on schedules, pushes, merges, etc.).
    - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
    # 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'
      - '/ci/danger-review.yml'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gitlab-styles-9.0.0 .gitlab-ci.yml
gitlab-styles-8.0.0 .gitlab-ci.yml
gitlab-styles-7.1.0 .gitlab-ci.yml
gitlab-styles-7.0.0 .gitlab-ci.yml