2023-08-24 21:24:38 +00:00
|
|
|
---
|
|
|
|
when:
|
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
|
|
|
steps:
|
2023-12-23 22:25:08 +00:00
|
|
|
- name: check-format
|
2023-10-16 12:15:31 +00:00
|
|
|
image: docker.io/library/python:3.12
|
2023-08-24 21:24:38 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry install
|
2023-11-10 08:27:37 +00:00
|
|
|
- poetry run ruff format --check --diff ./${CI_REPO_NAME//-/}
|
2023-08-24 21:24:38 +00:00
|
|
|
environment:
|
|
|
|
PY_COLORS: "1"
|
|
|
|
|
2023-12-23 22:25:08 +00:00
|
|
|
- name: check-coding
|
2023-10-16 12:15:31 +00:00
|
|
|
image: docker.io/library/python:3.12
|
2023-08-24 21:24:38 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry install
|
2024-03-12 19:52:54 +00:00
|
|
|
- poetry run ruff check ./${CI_REPO_NAME//-/}
|
2023-08-24 21:24:38 +00:00
|
|
|
environment:
|
|
|
|
PY_COLORS: "1"
|