mirror of
https://github.com/thegeeklab/git-batch.git
synced 2024-11-12 22:40:39 +00:00
28 lines
640 B
YAML
28 lines
640 B
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
check-format:
|
|
image: docker.io/library/python:3.11
|
|
commands:
|
|
- git fetch -tq
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
- poetry install
|
|
- poetry run yapf -dr ./${CI_REPO_NAME//-/}
|
|
environment:
|
|
PY_COLORS: "1"
|
|
|
|
check-coding:
|
|
image: docker.io/library/python:3.11
|
|
commands:
|
|
- git fetch -tq
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
- poetry install
|
|
- poetry run ruff ./${CI_REPO_NAME//-/}
|
|
environment:
|
|
PY_COLORS: "1"
|