ansible-later/.woodpecker/lint.yml

26 lines
644 B
YAML
Raw Normal View History

2023-08-25 00:07:23 +02:00
---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
steps:
- name: check-format
image: docker.io/library/python:3.12
2023-08-25 00:07:23 +02:00
commands:
- pip install poetry poetry-dynamic-versioning -qq
- poetry install
- poetry run ruff format --check --diff ./${CI_REPO_NAME//-/}
2023-08-25 00:07:23 +02:00
environment:
PY_COLORS: "1"
- name: check-coding
image: docker.io/library/python:3.12
2023-08-25 00:07:23 +02:00
commands:
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -E ansible-core
- poetry run ruff ./${CI_REPO_NAME//-/}
environment:
PY_COLORS: "1"