소스 검색

Create initial gitlab-ci config

* Loosly based on gitlab's python template
Paul Keith 3 년 전
부모
커밋
dcb54d16dc
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  1. 16 0
      .gitlab-ci.yml

+ 16 - 0
.gitlab-ci.yml

@@ -0,0 +1,16 @@
+image: python:latest
+
+variables:
+  PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
+
+cache:
+  paths:
+    - .cache/pip
+
+before_script:
+  - python -V  # Print out python version for debugging
+
+verify:
+  script:
+    - pip install requests
+    - python cicd/verify-permissions.py