mirror of
https://gitflic.ru/project/alt-gnome/karkas.git
synced 2024-12-23 16:23:02 +03:00
15 lines
234 B
YAML
15 lines
234 B
YAML
|
stages:
|
||
|
- lint
|
||
|
|
||
|
lint-pre-commit:
|
||
|
stage: lint
|
||
|
image: python:3.12-bullseye
|
||
|
before_script:
|
||
|
- pip install pre-commit
|
||
|
scripts:
|
||
|
- pre-commit run --all-files
|
||
|
cache:
|
||
|
paths:
|
||
|
- .cache/pip
|
||
|
- .cache/pre-commit
|