mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-04 20:30:43 +00:00
28 lines
688 B
YAML
28 lines
688 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 --depth=2147483647
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
- poetry install
|
|
- poetry run ruff format --check --diff ./${CI_REPO_NAME//-/}
|
|
environment:
|
|
PY_COLORS: "1"
|
|
|
|
check-coding:
|
|
image: docker.io/library/python:3.12
|
|
commands:
|
|
- git fetch --depth=2147483647
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
- poetry install
|
|
- poetry run ruff ./${CI_REPO_NAME//-/}
|
|
environment:
|
|
PY_COLORS: "1"
|