2023-08-24 22:02:01 +00:00
|
|
|
---
|
|
|
|
when:
|
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
|
|
|
steps:
|
2023-12-23 22:24:56 +00:00
|
|
|
- name: check-format
|
2023-10-16 12:15:21 +00:00
|
|
|
image: docker.io/library/python:3.12
|
2024-10-27 20:11:00 +00:00
|
|
|
depends_on: []
|
2023-08-24 22:02:01 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
2024-01-10 07:32:57 +00:00
|
|
|
- poetry install -E ansible-core
|
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"
|
|
|
|
|
2023-12-23 22:24:56 +00:00
|
|
|
- name: check-coding
|
2023-10-16 12:15:21 +00:00
|
|
|
image: docker.io/library/python:3.12
|
2024-10-27 20:11:00 +00:00
|
|
|
depends_on: []
|
2023-08-24 22:02:01 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
2024-01-10 07:32:57 +00:00
|
|
|
- poetry install -E ansible-core
|
2024-03-12 19:52:52 +00:00
|
|
|
- poetry run ruff check ./${CI_REPO_NAME//-/}
|
2023-08-24 22:02:01 +00:00
|
|
|
environment:
|
|
|
|
PY_COLORS: "1"
|
2024-06-02 07:00:07 +00:00
|
|
|
|
|
|
|
- name: check-jinja
|
|
|
|
image: docker.io/library/python:3.12
|
2024-10-27 20:11:00 +00:00
|
|
|
depends_on: []
|
2024-06-02 07:00:07 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry install -E ansible-core
|
|
|
|
- poetry run j2lint ansibledoctor/templates/ -i jinja-statements-indentation jinja-statements-delimiter
|
|
|
|
environment:
|
|
|
|
PY_COLORS: "1"
|