31 lines
595 B
YAML
31 lines
595 B
YAML
|
---
|
||
|
when:
|
||
|
- event: [pull_request, tag]
|
||
|
- event: [push, manual]
|
||
|
branch:
|
||
|
- ${CI_REPO_DEFAULT_BRANCH}
|
||
|
|
||
|
steps:
|
||
|
- name: ansible-later
|
||
|
image: quay.io/thegeeklab/ansible-later:4
|
||
|
commands:
|
||
|
- ansible-later
|
||
|
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 .
|
||
|
environment:
|
||
|
PY_COLORS: "1"
|