blob: 72c768a29a3c7b6a2cda2b463ecd4bc10bd97830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
variables:
DOCKER_DRIVER: overlay2
GIT_DEPTH: "1"
GIT_STRATEGY: fetch
GIT_SUBMODULE_STRATEGY: 'recursive'
stages:
- test
lint:
stage: test
image: ruby:alpine
script:
- apk add bash build-base git shellcheck
- bin/setup
- bin/lint
needs: []
integration:
image: docker:stable
stage: test
services:
- docker:stable-dind
script:
- apk add build-base git ruby ruby-bigdecimal ruby-bundler ruby-dev ruby-json
- bundle install
- bundle exec rspec
|