booplaysgba/.gitlab-ci.yml

12 lines
193 B
YAML
Raw Normal View History

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-04 14:22:17 +00:00
- pip install pre-commit types-redis
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