mirror of
https://github.com/thegeeklab/prometheus-pve-sd.git
synced 2024-10-31 23:50:39 +00:00
26 lines
628 B
YAML
26 lines
628 B
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
- name: check-format
|
|
image: docker.io/library/python:3.12
|
|
commands:
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
- poetry install
|
|
- poetry run ruff format --check --diff ./${CI_REPO_NAME//-/}
|
|
environment:
|
|
PY_COLORS: "1"
|
|
|
|
- name: check-coding
|
|
image: docker.io/library/python:3.12
|
|
commands:
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
- poetry install
|
|
- poetry run ruff ./${CI_REPO_NAME//-/}
|
|
environment:
|
|
PY_COLORS: "1"
|