您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。
 
 
 
 
 
 

26 行
413 B

  1. image: python:latest
  2. variables:
  3. PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
  4. before_script:
  5. - pip install poetry
  6. - poetry config virtualenvs.in-project true
  7. pages:
  8. script:
  9. - cd cours
  10. - poetry install
  11. - poetry run python build.py --werror
  12. - mv build/html ../public/
  13. artifacts:
  14. paths:
  15. - public
  16. cache:
  17. paths:
  18. - cours/.venv
  19. - .cache/pip
  20. only:
  21. - master