From 2f27fdb8bff6d444edfebca73594d86fa9e168ca Mon Sep 17 00:00:00 2001 From: Celes Renata Date: Sat, 18 Apr 2026 20:55:03 +0000 Subject: [PATCH] ci: use official ruff image for faster lint step --- .woodpecker.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 29d8066..353ad40 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -4,10 +4,9 @@ steps: lint-python: - image: python:3.12-slim + image: ghcr.io/astral-sh/ruff:0.15.10 commands: - - pip install ruff==0.15.10 --quiet - - ruff check services/ + - ruff check --output-format=concise services/ when: event: [push, pull_request]