mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-15 01:00:42 +00:00
7dc2294a37
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
28 lines
672 B
YAML
28 lines
672 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.13
|
|
depends_on: []
|
|
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.13
|
|
depends_on: []
|
|
commands:
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
- poetry install
|
|
- poetry run ruff check ./${CI_REPO_NAME//-/}
|
|
environment:
|
|
PY_COLORS: "1"
|