Skip to content
Snippets Groups Projects
.gitlab-ci.yml 213 B
Newer Older
flake8:
  image: python:3-alpine
  tags:
    - docker
  before_script:
    - python -m pip install --upgrade pip
    - pip3 install flake8
    # Run flake8 (pycodestyle + pyflakes) check.
Nicolas KAROLAK's avatar
Nicolas KAROLAK committed
    - flake8 .