Sha256: 4bc98d3cf42bab7e2c5d03681c1c130e9ba71d7983f7d9501fb011d593ea3843

Contents?: true

Size: 504 Bytes

Versions: 9

Compression:

Stored size: 504 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 demo/ public/
    - mv coverage/ public/coverage
  artifacts:
    paths:
      - public
    expire_in: 30 days
  only:
    - master

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
soaspec-0.2.23 .gitlab-ci.yml
soaspec-0.2.22 .gitlab-ci.yml
soaspec-0.2.21 .gitlab-ci.yml
soaspec-0.2.20 .gitlab-ci.yml
soaspec-0.2.19 .gitlab-ci.yml
soaspec-0.2.18 .gitlab-ci.yml
soaspec-0.2.17 .gitlab-ci.yml
soaspec-0.2.16 .gitlab-ci.yml
soaspec-0.2.15 .gitlab-ci.yml