Sha256: 60ca918ab679319453e99ced70c4402e094407e9ce87cb72ae3bfa3c2043a563

Contents?: true

Size: 473 Bytes

Versions: 6

Compression:

Stored size: 473 Bytes

Contents

image: ruby:2.5

before_script:
  - ruby -v
  - which ruby
  - gem install bundler rake
  - bundle install --jobs $(nproc)  "${FLAGS[@]}"

rspec:
  stage: test
  script:
    - bundle exec rake spec
  artifacts:
    paths:
      - coverage/

cucumber:
  stage: test
  script:
    - bundle exec cucumber

pages:
  stage: deploy
  dependencies:
    - rspec
  script:
    - mv coverage/ public/
  artifacts:
    paths:
      - public
    expire_in: 30 days
  only:
    - master

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
soaspec-0.2.14 .gitlab-ci.yml
soaspec-0.2.13 .gitlab-ci.yml
soaspec-0.2.12 .gitlab-ci.yml
soaspec-0.2.11 .gitlab-ci.yml
soaspec-0.2.10 .gitlab-ci.yml
soaspec-0.2.9 .gitlab-ci.yml