2023-08-22 19:49:57 +00:00
|
|
|
---
|
|
|
|
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
|
2023-08-24 20:35:47 +00:00
|
|
|
- poetry run yapf -dr ./${CI_REPO_NAME//-/}
|
2023-08-22 19:49:57 +00:00
|
|
|
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
|
2023-08-24 20:35:47 +00:00
|
|
|
- poetry run ruff ./${CI_REPO_NAME//-/}
|
2023-08-22 19:49:57 +00:00
|
|
|
environment:
|
|
|
|
PY_COLORS: "1"
|