transip-client/.woodpecker/tests.yaml
Sonny Bakker 84558826fb
All checks were successful
ci/woodpecker/push/tests Pipeline was successful
Adapter refactor
Allows using different ways to retrieve hosts IP address
2025-05-03 13:51:49 +02:00

17 lines
417 B
YAML

when:
- event: push
steps:
- name: python tests
image: ghcr.io/astral-sh/uv:python3.11-alpine
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-alpine
commands:
- uv sync
- uv run -- ruff format --diff
- uv run -- ruff check --diff