diff options
Diffstat (limited to '.gitlab')
| -rw-r--r-- | .gitlab/build.yml | 8 | ||||
| -rw-r--r-- | .gitlab/test.yml | 9 |
2 files changed, 9 insertions, 8 deletions
diff --git a/.gitlab/build.yml b/.gitlab/build.yml index 6cc7807..a7c2dab 100644 --- a/.gitlab/build.yml +++ b/.gitlab/build.yml @@ -35,11 +35,3 @@ build-mvn-pkg: script: - cd spec/fixtures/java/example/ && mvn deploy -s settings.xml allow_failure: true - -lint: - stage: build - image: ruby:alpine - script: - - apk add build-base shellcheck - - bin/setup - - bin/lint diff --git a/.gitlab/test.yml b/.gitlab/test.yml index ba09df2..98bd92f 100644 --- a/.gitlab/test.yml +++ b/.gitlab/test.yml @@ -18,6 +18,15 @@ size: - test "$MAX_SIZE" -gt "$CURRENT_SIZE" needs: ['build-docker-image'] +lint: + stage: test + image: ruby:alpine + script: + - apk add build-base shellcheck + - bin/setup + - bin/lint + needs: [] + .rspec: stage: test script: |
