Create initial gitlab-ci config
* Loosly based on gitlab's python template
This commit is contained in:
parent
66b355e013
commit
dcb54d16dc
16
.gitlab-ci.yml
Normal file
16
.gitlab-ci.yml
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user