prometheus-pve-sd/.woodpecker/lint.yml

28 lines
702 B
YAML
Raw Normal View History

2023-08-24 20:14:30 +00:00
---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
steps:
2023-12-22 11:17:03 +00:00
- name: check-format
image: docker.io/library/python:3.12
2023-08-24 20:14:30 +00:00
commands:
- git fetch --depth=2147483647
2023-08-24 20:14:30 +00:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry install
- poetry run ruff format --check --diff ./${CI_REPO_NAME//-/}
2023-08-24 20:14:30 +00:00
environment:
PY_COLORS: "1"
2023-12-22 11:17:03 +00:00
- name: check-coding
image: docker.io/library/python:3.12
2023-08-24 20:14:30 +00:00
commands:
- git fetch --depth=2147483647
2023-08-24 20:14:30 +00:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry install
- poetry run ruff ./${CI_REPO_NAME//-/}
environment:
PY_COLORS: "1"