2021-10-13 14:01:23 +09:00
|
|
|
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
|
2021-10-13 15:01:30 +09:00
|
|
|
- pip install requests
|
2021-10-13 14:01:23 +09:00
|
|
|
|
|
|
|
verify:
|
|
|
|
script:
|
|
|
|
- python cicd/verify-permissions.py
|