Marcin-Ramotowski 1254b036f5
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Added cd to api directory
2025-05-25 16:54:15 +00:00

14 lines
292 B
YAML

when:
- event: push
branch: woodpecker
steps:
- name: build
image: python:3.11.7-alpine
commands:
- cd api
- python3 -m venv env
- source env/bin/activate
- pip install -r requirements.txt pytest
- python3 -m pytest --junit-xml=pytest_junit.xml