xoxys.lvm/.woodpecker/lint.yaml

31 lines
603 B
YAML
Raw Normal View History

2024-02-18 13:16:42 +01:00
---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
steps:
- name: ansible-lint
image: quay.io/thegeeklab/ansible-dev-tools:1
2024-02-18 13:16:42 +01:00
commands:
- ansible-lint
2024-02-18 13:16:42 +01:00
environment:
FORCE_COLOR: "1"
- name: python-format
image: docker.io/python:3.12
commands:
- pip install -qq ruff
- ruff format --check --diff .
environment:
PY_COLORS: "1"
- name: python-lint
image: docker.io/python:3.12
commands:
- pip install -qq ruff
2024-08-18 13:43:50 +02:00
- ruff check .
2024-02-18 13:16:42 +01:00
environment:
PY_COLORS: "1"