teilchensammler/.woodpecker/workflow.yaml

28 lines
641 B
YAML
Raw Normal View History

when:
- event: push
branch: main
steps:
- name: lint
image: pipelinecomponents/ruff
commands:
- ruff check .
- name: test
image: python:3.13-slim
environment:
DJANGO_SETTINGS_MODULE: config.settings
DEPLOYMENT: Test
ENV_PATH: .env.ci
commands:
- python -m pip install --root-user-action=ignore --disable-pip-version-check --no-input --quiet -r requirements/test.txt
- python -m pytest
services:
- name: database
image: postgres:17
environment:
POSTGRES_PASSWORD: teilchensammler
2025-03-14 22:22:40 +01:00
POSTGRES_DB: teilchensammler_test
POSTGRES_INITDB_ARGS: --nosync