summaryrefslogtreecommitdiff
path: root/.gitlab/test.yml
blob: a190e861075fab7fe4599c8a3cb4353c1e9501fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
unit:
  stage: test
  script:
    - gem install bundler -v '~> 2.0'
    - bundle install
    - bundle exec rspec spec/unit

integration:
  stage: test
  script:
    - gem install bundler -v '~> 2.0'
    - bundle install
    - bundle exec rspec spec/integration