booplaysgba/.gitlab-ci.yml

14 lines
178 B
YAML
Raw Normal View History

2021-11-01 13:29:07 +00:00
stages:
- lint
2021-11-01 13:36:43 +00:00
image: python:latest
before_script:
- pip install pre-commit
- pre-commit install
2021-11-01 13:29:07 +00:00
flake8:
stage: lint
script:
- pre-commit run flake8 --all-files