Sha256: 8e0bfcec665be765b1b7140f3701e4e9fb8c915809957f21a1122ef006af8b25

Contents?: true

Size: 684 Bytes

Versions: 2

Compression:

Stored size: 684 Bytes

Contents

---
stages:
  - test
  - deploy

variables:
  BUNDLE_FROZEN: "true"

rspec:
  stage: test
  image: "ruby:$RUBY_VERSION"
  cache:
    paths:
      - vendor/ruby
  before_script:
    - ruby -v  # Print out ruby version for debugging
    - gem install bundler -v 2.4.13
    - bundle config set --local path "vendor/ruby/$RUBY_VERSION"
    - bundle install
  script:
    - bundle exec rspec
    - bundle exec rspec feature
  parallel:
    matrix:
      - RUBY_VERSION:
        - "2.7"
        - "3.0"
        - "3.1"
        - "3.2"

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
test_file_finder-0.2.1 .gitlab-ci.yml
test_file_finder-0.2.0 .gitlab-ci.yml