Sha256: b70fc7e507b47467a87cc47c6863bfb8d07eba01e9d697f81be71282c9cbb4cb

Contents?: true

Size: 482 Bytes

Versions: 3

Compression:

Stored size: 482 Bytes

Contents

image: ruby:2.5

stages:
  - lint
  - test

cache:
  paths:
    - vendor/ruby

rubocop:
  stage: lint
  before_script:
    - gem install rubocop -v 0.60.0
  script:
    - rubocop
  except:
    - schedules

bundler-audit:
  stage: lint
  before_script:
    - bundle install --path vendor
    - gem install bundler-audit
  script:
    - bundle audit

rspec:
  stage: test
  before_script:
    - bundle install --path vendor
  script:
    - bundle exec rspec
  except:
    - schedules

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bankai-0.2.3 .gitlab-ci.yml
bankai-0.2.2 .gitlab-ci.yml
bankai-0.2.1 .gitlab-ci.yml