Robert Kaussow
806d10cf4c
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/notify Pipeline was successful
ci/woodpecker/manual/lint Pipeline was successful
ci/woodpecker/manual/test Pipeline was successful
ci/woodpecker/manual/docs Pipeline was successful
ci/woodpecker/manual/notify Pipeline was successful
31 lines
603 B
YAML
31 lines
603 B
YAML
---
|
|
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
|
|
commands:
|
|
- ansible-lint
|
|
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
|
|
- ruff check .
|
|
environment:
|
|
PY_COLORS: "1"
|