booplaysgba/.gitlab-ci.yml
2021-11-02 21:39:50 +01:00

12 lines
181 B
YAML

stages:
- lint
pre-commit:
stage: lint
image: python:latest
before_script:
- pip install pre-commit
- pre-commit install
script:
- pre-commit run --all-files