diff options
| -rw-r--r-- | .gitlab-ci.yml | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6d8a2552..75f00d4d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,7 +27,9 @@ variables:  lint-python:      stage: lint -    image: $BASE_IMAGE_URL:alpine-3.7-$CI_COMMIT_REF_SLUG +    image: python:3.7-alpine +    before_script: +        - python -m pip install flake8      script:          - flake8      tags: | 
