17 lines
269 B
YAML
17 lines
269 B
YAML
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
|
|
- pip install requests
|
|
|
|
verify:
|
|
script:
|
|
- python cicd/verify-permissions.py
|