12 lines
181 B
YAML
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
|