pix360core/.gitlab-ci.yml

16 lines
313 B
YAML
Raw Normal View History

2023-10-31 09:29:00 +00:00
image: python:3.11
2023-10-31 09:28:03 +00:00
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 &