pix360core/.gitlab-ci.yml
2023-10-31 10:29:00 +01:00

16 lines
313 B
YAML

image: python:3.11
stages:
- test
test:
stage: test
script:
- git clone https://kumig.it/kumisystems/pix360.git project
- cd project
- pip install -Ur requirements.txt
- pip install ..
- python manage.py migrate
- python manage.py installmodules
- python manage.py runserver &