mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-04 20:30:43 +00:00
Robert Kaussow
d6ce15fc00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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.12
|
|
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.12
|
|
commands:
|
|
- git fetch -tq
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
- poetry install
|
|
- poetry run ruff ./${CI_REPO_NAME//-/}
|
|
environment:
|
|
PY_COLORS: "1"
|