diff options
| author | mo khan <mo.khan@gmail.com> | 2020-09-16 16:07:26 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-09-16 16:07:26 -0600 |
| commit | 485768d3fe3e39c8934c00b164f1fb7ddca76e6c (patch) | |
| tree | e707a2f50012f2a7ab37a224712ed57314961e89 | |
| parent | e1aa5a74d5f9d7bf23d3aaab75e94ae17b96016d (diff) | |
chore: add lint job
| -rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f4e111c..90919ab 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,16 @@ variables: stages: - test -e2e: +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: |
