Skip to content
.gitlab-ci.yml 332 B
Newer Older
phylogram's avatar
phylogram committed
variables:
    PYTHON_BASE_IMAGE: 'python:3.8.3-slim'

stages:
    - build

download-collections:
    image: $PYTHON_BASE_IMAGE
    stage: build
    script:
        - pip install --upgrade pip
        - pip install -r requirements.txt
        - python script.py
    artifacts:
        paths:
            - 'data/download'