From 2660eee58ebb30ae74fa9aa810fcbdd5dd386408 Mon Sep 17 00:00:00 2001 From: jrybicki-jsc <j.rybicki@fz-juelich.de> Date: Fri, 20 Aug 2021 11:48:51 +0200 Subject: [PATCH] ci setup, probably will require an alterative entrypoint --- .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..a8b3f56 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +default: + image: python:3-slim + +stages: + - test + - build + - publish + - deploy + +test: + stage: test + image: apache/airflow:2.1.2 + script: + - airflow db init + - airflow dags list + -- GitLab