xmpp-api/.woodpecker/check.yaml
Alexander PapaTutuWawa ae406f07ac
All checks were successful
ci/woodpecker/push/check Pipeline was successful
CI: Install dependencies + dev tooling
2025-04-21 18:09:24 +02:00

17 lines
402 B
YAML

when:
- event: push
branch: master
steps:
- name: Perform checks
image: ghcr.io/astral-sh/uv:python3.13-alpine
commands:
- apk add --no-cache cargo git
- uv sync --extra dev
# Lint the code
- uv run ruff check src/xmpp_api/
# Check for type safety
- uv run mypy src/xmpp_api/
# Check for security issues
- uv run bandit -r src/xmpp_api/