2021-11-01 13:29:07 +00:00
|
|
|
stages:
|
|
|
|
- lint
|
|
|
|
|
2021-11-02 20:39:50 +00:00
|
|
|
pre-commit:
|
2021-11-01 13:54:22 +00:00
|
|
|
stage: lint
|
2021-11-02 20:39:50 +00:00
|
|
|
image: python:latest
|
|
|
|
before_script:
|
2021-11-05 12:57:11 +00:00
|
|
|
- pip install pre-commit
|
2021-11-02 20:39:50 +00:00
|
|
|
- pre-commit install
|
2021-11-01 13:54:22 +00:00
|
|
|
script:
|
2021-11-02 20:39:50 +00:00
|
|
|
- pre-commit run --all-files
|