transip-client/.woodpecker/tests.yaml
Sonny Bakker 03666c3334
Some checks failed
ci/woodpecker/push/tests Pipeline failed
Updated woodpecker configuration
2025-02-27 22:13:11 +01:00

17 lines
421 B
YAML

when:
- event: push
steps:
- name: python tests
image: ghcr.io/astral-sh/uv:python3.11-bookworm
commands:
- uv sync --group ci
- uv run -- coverage run --module unittest
- uv run -- coverage report
- 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