From dcb54d16dca771832e3956e8dbc7355984069648 Mon Sep 17 00:00:00 2001 From: Paul Keith Date: Wed, 13 Oct 2021 00:01:23 -0500 Subject: [PATCH] Create initial gitlab-ci config * Loosly based on gitlab's python template --- .gitlab-ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..24c2530 --- /dev/null +++ b/.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