mirror of
https://gitlab.com/moepoi/Quintal-Grabber.git
synced 2024-11-14 18:36:21 +01:00
13 lines
231 B
YAML
13 lines
231 B
YAML
image: "python:3.6-stretch"
|
|
stages: [ install, deploy ]
|
|
|
|
requirements:
|
|
stage: install
|
|
script:
|
|
- pip install -r requirements.txt
|
|
|
|
test:
|
|
stage: deploy
|
|
script:
|
|
- pip install -r requirements.txt
|
|
- python example.py
|