Sha256: 95389aa39956a23fb836d2e8fe1cc1c9976e4756e2b39732afe56f9e93f32766

Contents?: true

Size: 681 Bytes

Versions: 6

Compression:

Stored size: 681 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'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gitlab-styles-6.6.0 .gitlab-ci.yml
gitlab-styles-6.5.0 .gitlab-ci.yml
gitlab-styles-6.4.0 .gitlab-ci.yml
gitlab-styles-6.3.0 .gitlab-ci.yml
gitlab-styles-6.2.1 .gitlab-ci.yml
gitlab-styles-6.2.0 .gitlab-ci.yml