2023-08-24 22:02:01 +00:00
|
|
|
---
|
|
|
|
when:
|
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
check-format:
|
2023-10-16 12:15:21 +00:00
|
|
|
image: docker.io/library/python:3.12
|
2023-08-24 22:02:01 +00:00
|
|
|
commands:
|
2023-10-16 13:43:04 +00:00
|
|
|
- git fetch --depth=2147483647
|
2023-08-24 22:02:01 +00:00
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry install
|
2023-11-10 13:50:50 +00:00
|
|
|
- poetry run ruff format --check --diff ./${CI_REPO_NAME//-/}
|
2023-08-24 22:02:01 +00:00
|
|
|
environment:
|
|
|
|
PY_COLORS: "1"
|
|
|
|
|
|
|
|
check-coding:
|
2023-10-16 12:15:21 +00:00
|
|
|
image: docker.io/library/python:3.12
|
2023-08-24 22:02:01 +00:00
|
|
|
commands:
|
2023-10-16 13:43:04 +00:00
|
|
|
- git fetch --depth=2147483647
|
2023-08-24 22:02:01 +00:00
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry install
|
|
|
|
- poetry run ruff ./${CI_REPO_NAME//-/}
|
|
|
|
environment:
|
|
|
|
PY_COLORS: "1"
|