This GitLab CI configuration is valid. Learn more
.gitlab-ci.yml 272 Bytes
before_script:
  - apt-get update -y
  - apt-get install python3 -y
  - python --version ; pip --version
  - pip install virtualenv
  - virtualenv venv
  - source venv/bin/activate

run:
  script:
    - pip install -r requirements.txt

start:
  script:
  - python3 main.py