Sha256: 081d35b404a7e395d936dd70b2a5e440342d596ba01978901715e7ce7258a555

Contents?: true

Size: 430 Bytes

Versions: 1

Compression:

Stored size: 430 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

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bankai-0.2.0 .gitlab-ci.yml