diff --git a/.woodpecker/tests.yaml b/.woodpecker/tests.yaml index cc9abd7..b4a23fc 100644 --- a/.woodpecker/tests.yaml +++ b/.woodpecker/tests.yaml @@ -5,11 +5,13 @@ steps: - name: python tests image: ghcr.io/astral-sh/uv:python3.11-bookworm commands: - - uv sync --extra ci + - uv sync --group ci - uv run -- coverage run --module unittest - uv run -- coverage report - - name: code formatting + - name: code formatting & linting image: ghcr.io/astral-sh/uv:python3.11-bookworm commands: + - uv sync - uv run -- ruff format --diff + - uv run -- ruff check --diff